bruno/renderer/components/Sidebar/Collections/Collection/StyledWrapper.js

42 lines
676 B
JavaScript
Raw Normal View History

2021-12-03 20:37:38 +01:00
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;
2021-12-03 20:37:38 +01:00
.rotate-90 {
transform: rotateZ(90deg);
}
2022-01-01 10:07:34 +01:00
.collection-actions {
display: none;
flex-grow: 1;
justify-content: flex-end;
svg {
height: 22px;
color: rgb(110 110 110);
}
}
&:hover {
.collection-actions {
display: flex;
}
}
2022-03-13 13:13:21 +01:00
div.tippy-box {
position: relative;
top: -0.625rem;
font-weight: 400;
}
2021-12-03 20:37:38 +01:00
}
`;
export default Wrapper;