mirror of
https://github.com/usebruno/bruno.git
synced 2024-11-23 00:13:24 +01:00
25 lines
368 B
JavaScript
25 lines
368 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.create-request {
|
|
color: #737373;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.collection-options {
|
|
svg {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
|
|
.label {
|
|
cursor: pointer;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|