mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-24 21:25:45 +00:00
13 lines
245 B
JavaScript
13 lines
245 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
max-width: 800px;
|
|
|
|
span.developer-mode-warning {
|
|
font-weight: 400;
|
|
color: ${(props) => props.theme.colors.text.yellow};
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|