mirror of
https://github.com/usebruno/bruno.git
synced 2025-07-16 12:15:30 +02:00
11 lines
199 B
JavaScript
11 lines
199 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
div.CodeMirror {
|
|
/* todo: find a better way */
|
|
height: calc(100vh - 220px);
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|