mirror of
https://github.com/usebruno/bruno.git
synced 2026-07-07 22:18:33 +00:00
16 lines
343 B
JavaScript
16 lines
343 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
.auth-mode-selector {
|
|
border: 1px solid ${({ theme }) => theme.colors.border};
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
font-size: 0.8125rem;
|
|
}
|
|
|
|
.auth-mode-label {
|
|
color: ${({ theme }) => theme.colors.text};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper; |