mirror of
https://github.com/usebruno/bruno.git
synced 2025-03-20 18:27:59 +01:00
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const Wrapper = styled.div`
|
|
div.CodeMirror {
|
|
/* todo: find a better way */
|
|
height: calc(100vh - 240px);
|
|
}
|
|
`;
|
|
|
|
export default Wrapper;
|