mirror of
https://github.com/Kong/insomnia.git
synced 2026-04-21 22:57:59 -04:00
27 lines
617 B
SCSS
27 lines
617 B
SCSS
@import '../constants/colors';
|
|
|
|
.CodeMirror {
|
|
height: 100% !important;
|
|
width: 100%;
|
|
font-size: 13px !important;
|
|
font-family: "Source Code Pro", monospace;
|
|
padding: 5px 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.CodeMirror,
|
|
.cm-s-seti.CodeMirror, // Hack because seti theme is dumb
|
|
.CodeMirror-gutters,
|
|
.CodeMirror-scrollbar-filler,
|
|
.CodeMirror-gutter-filler {
|
|
background-color: $bg-dark !important;
|
|
}
|
|
|
|
.CodeMirror-overlayscroll-horizontal div, .CodeMirror-overlayscroll-vertical div {
|
|
background: lighten($bg-dark, 10%);
|
|
}
|
|
|
|
.CodeMirror-linenumber, .CodeMirror-guttermarker-subtle {
|
|
color: #555555 !important;
|
|
}
|