mirror of
https://github.com/usebruno/bruno.git
synced 2025-03-13 06:18:46 +01: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 - 255px);
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|
|
|