bruno/packages/grafnode-components/src/components/Sidebar/StyledWrapper.js

28 lines
444 B
JavaScript
Raw Normal View History

2022-01-02 09:15:13 +01:00
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;