21 lines
302 B
SCSS
21 lines
302 B
SCSS
.editor {
|
|
@include clearfix();
|
|
|
|
.CodeMirror {
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
position: relative;
|
|
height: 379px;
|
|
border: 1px solid #3c3c3c;
|
|
border-top: 1px solid #8891a1;
|
|
background: $white;
|
|
color: #3c3c3c;
|
|
}
|
|
|
|
.CodeMirror-scroll {
|
|
height: 100%;
|
|
}
|
|
}
|
|
|