mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-03 05:14:04 +01:00
28 lines
444 B
JavaScript
28 lines
444 B
JavaScript
|
import styled from 'styled-components';
|
||
|
|
||
|
const Wrapper = styled.aside`
|
||
|
.collection-title {
|
||
|
line-height: 1.5;
|
||
|
.collection-dropdown {
|
||
|
.dropdown-icon {
|
||
|
display: none;
|
||
|
color: rgb(110 110 110);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&:hover {
|
||
|
background: #f7f7f7;
|
||
|
.dropdown-icon {
|
||
|
display: flex;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
div.tippy-box {
|
||
|
position: relative;
|
||
|
top: -0.625rem;
|
||
|
}
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default Wrapper;
|