fix: set correct editor height regardless of preferred font size (#1614)
This commit is contained in:
parent
deabc80fd7
commit
ddd4ffa4ca
|
@ -291,18 +291,21 @@ main .spinner .bounce2 {
|
||||||
/* EDITOR */
|
/* EDITOR */
|
||||||
|
|
||||||
#editor-container {
|
#editor-container {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
background-color: #fafafa;
|
background-color: #fafafa;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
padding-top: 4em;
|
padding-top: 4em;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
|
height: 100%;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
z-index: 9999;
|
z-index: 9999;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#editor-container #editor {
|
#editor-container #editor {
|
||||||
height: calc(100vh - 8.4em);
|
flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
#editor-container .breadcrumbs {
|
#editor-container .breadcrumbs {
|
||||||
|
|
Loading…
Reference in New Issue