mirror of
https://github.com/usebruno/bruno.git
synced 2024-12-03 05:14:04 +01:00
17 lines
306 B
JavaScript
17 lines
306 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
div.CodeMirror {
|
|
border: solid 1px var(--color-codemirror-border);
|
|
/* todo: find a better way */
|
|
height: calc(100vh - 255px);
|
|
}
|
|
|
|
textarea.cm-editor {
|
|
position: relative;
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|
|
|