mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-08 06:28:33 +00:00
15 lines
370 B
JavaScript
15 lines
370 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
font-size: ${(props) => props.theme.font.size.base};
|
|
color: ${(props) => props.theme.dropdown.iconColor};
|
|
border-radius: 4px;
|
|
|
|
&:hover {
|
|
background-color: ${(props) => props.theme.workspace.button.bg};
|
|
color: ${(props) => props.theme.text};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|