mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-11 17:20:39 +01:00
36 lines
577 B
JavaScript
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;
|