mirror of
https://github.com/usebruno/bruno.git
synced 2025-02-03 03:19:16 +01:00
15 lines
239 B
JavaScript
15 lines
239 B
JavaScript
import styled from 'styled-components';
|
|
|
|
const StyledWrapper = styled.div`
|
|
div.CodeMirror {
|
|
border: solid 1px var(--color-codemirror-border);
|
|
}
|
|
|
|
textarea.cm-editor {
|
|
position: relative;
|
|
}
|
|
`;
|
|
|
|
export default StyledWrapper;
|
|
|