mirror of
https://github.com/usebruno/bruno.git
synced 2025-03-23 03:37:23 +01:00
27 lines
445 B
JavaScript
27 lines
445 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
font-size: 0.8125rem;
|
|
|
|
.body-mode-selector {
|
|
background: #efefef;
|
|
border-radius: 3px;
|
|
|
|
.dropdown-item {
|
|
padding: .2rem .6rem !important;
|
|
padding-left: 1.5rem !important;
|
|
}
|
|
|
|
.label-item {
|
|
padding: .2rem .6rem !important;
|
|
}
|
|
}
|
|
|
|
.caret {
|
|
color: rgb(140, 140, 140);
|
|
fill: rgb(140 140 140);
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|