fix: set correct editor height regardless of preferred font size (#1614)

This commit is contained in:
niubility000
2021-10-20 00:32:25 +08:00
committed by GitHub
parent deabc80fd7
commit ddd4ffa4ca

View File

@@ -291,18 +291,21 @@ main .spinner .bounce2 {
/* EDITOR */
#editor-container {
display: flex;
flex-direction: column;
background-color: #fafafa;
position: fixed;
padding-top: 4em;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 9999;
overflow: hidden;
}
#editor-container #editor {
height: calc(100vh - 8.4em);
flex: 1;
}
#editor-container .breadcrumbs {