mirror of
https://github.com/usebruno/bruno.git
synced 2025-04-01 02:56:36 +02:00
12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
div.CodeMirror {
|
|
/* todo: find a better way */
|
|
height: calc(100vh - 240px);
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|
|
|