Skip to content

Commit

Permalink
fix: set correct editor height regardless of preferred font size (#1614)
Browse files Browse the repository at this point in the history
  • Loading branch information
niubility000 committed Oct 19, 2021
1 parent deabc80 commit ddd4ffa
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit ddd4ffa

Please sign in to comment.