mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-03 01:18:32 +00:00
30 lines
462 B
JavaScript
30 lines
462 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.heading {
|
|
color: ${(props) => props.theme.welcome.heading};
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.muted {
|
|
color: ${(props) => props.theme.welcome.muted};
|
|
}
|
|
|
|
.collection-options {
|
|
cursor: pointer;
|
|
|
|
svg {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
|
|
.label {
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|