mirror of
https://github.com/usebruno/bruno.git
synced 2026-06-26 14:15:52 +00:00
16 lines
231 B
JavaScript
16 lines
231 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
max-width: 800px;
|
|
|
|
div.CodeMirror {
|
|
height: inherit;
|
|
}
|
|
|
|
div.title {
|
|
color: var(--color-tab-inactive);
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|