fix(map): Fix vertical scrollbar not showing up in code edit (#16625)

Closes #16327
This commit is contained in:
Damon Tian
2018-02-06 05:10:28 -05:00
committed by Stuart Taylor
parent 195653a2ef
commit be7bd01c3d

View File

@ -4,7 +4,6 @@
// challenge panes are bound to the pane size which in turn is // challenge panes are bound to the pane size which in turn is
// bound to the total height minus navbar height // bound to the total height minus navbar height
.max-element-height() { .max-element-height() {
height: 100%;
overflow-x: hidden; overflow-x: hidden;
overflow-y: auto; overflow-y: auto;
} }
@ -19,4 +18,4 @@
.@{ns}-editor { .@{ns}-editor {
.max-element-height(); .max-element-height();
width: 100%; width: 100%;
} }