bruno/renderer/components/Sidebar/StyledWrapper.js
2022-03-14 03:08:57 +05:30

30 lines
498 B
JavaScript

import styled from 'styled-components';
const Wrapper = styled.aside`
background-color: var(--color-sidebar-background);
.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;