bruno/renderer/components/Sidebar/Collections/Collection/StyledWrapper.js
2022-03-07 17:52:35 +05:30

36 lines
577 B
JavaScript

import styled from 'styled-components';
const Wrapper = styled.div`
.collection-name {
height: 1.875rem;
cursor: pointer;
user-select: none;
padding-left: 8px;
padding-right: 8px;
font-weight: 600;
.rotate-90 {
transform: rotateZ(90deg);
}
.collection-actions {
display: none;
flex-grow: 1;
justify-content: flex-end;
svg {
height: 22px;
color: rgb(110 110 110);
}
}
&:hover {
.collection-actions {
display: flex;
}
}
}
`;
export default Wrapper;