mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-23 12:45:38 +00:00
29 lines
478 B
JavaScript
29 lines
478 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
font-size: 0.8125rem;
|
|
|
|
.auth-mode-selector {
|
|
background: transparent;
|
|
|
|
.auth-mode-label {
|
|
color: ${(props) => props.theme.colors.text.yellow};
|
|
}
|
|
|
|
.dropdown-item {
|
|
padding: 0.2rem 0.6rem !important;
|
|
}
|
|
|
|
.label-item {
|
|
padding: 0.2rem 0.6rem !important;
|
|
}
|
|
}
|
|
|
|
.caret {
|
|
color: rgb(140, 140, 140);
|
|
fill: rgb(140 140 140);
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|