mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-27 22:54:07 +00:00
* Preferences UI polish * chore: cleanup * chore: cleanup * chore: removed unused classname
26 lines
398 B
JavaScript
26 lines
398 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
width: 100%;
|
|
|
|
color: ${(props) => props.theme.text};
|
|
.rows {
|
|
svg {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
|
|
.label {
|
|
cursor: pointer;
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|