/ embark-ui / src / containers / EditorContainer.css
EditorContainer.css
 1  .editor--grid {
 2    margin-left: -30px !important;
 3    margin-right: -30px !important;
 4    margin-top: -1.5rem !important;
 5  }
 6  
 7  .hidden-toogle {
 8    position: absolute;
 9    bottom: 0;
10    right: 0;
11    left: 0;
12  }
13  
14  .text-editor__debuggerLine {
15    opacity: 0.4;
16    background-color: #20a8d8;
17  }
18  
19  .text-editor-container {
20    overflow: hidden;
21  }
22  
23  .editor-aside {
24    position: absolute;
25    top: 0;
26    left: 0;
27    right: 0;
28    bottom: 0;
29    overflow-x: hidden;
30    overflow-y: auto;
31  }
32  
33  @media (max-width: 768px) {
34    .editor-aside {
35      position: relative;
36    }
37  
38    .aside-opened .text-editor-container {
39      max-height: 500px;
40    }
41  }