When viewing the Page Builder tab for any Page, the code editor window remains 515px high irrespective of larger screen size. The CSS causing this is:
.mainBody #codeEditor .aceeditor { min-height: 515px;}If you add the same height calc that you added in the Code Editor window fix, that should do it:.mainBody #codeEditor .aceeditor {
min-height: 515px;
height: calc(100vh-280px) !important;
}
/* Note: this is currently being overridden by inline height CSS on #html-editor, thus the "!important." If I use "75vh !important" that works well too. */
Thanks!

Please authenticate to join the conversation.
Completed
Feature
Almost 6 years ago

Bruce Dunnan
Get notified by email when there are changes.
Completed
Feature
Almost 6 years ago

Bruce Dunnan
Get notified by email when there are changes.