app: fix clipping of editor popups

Editor popups like the ones for code completion were getting clipped
by the layout pane containers.
This commit is contained in:
David Lechner
2022-12-27 17:35:11 -06:00
committed by David Lechner
parent 1482e9f197
commit 74f1619eb3
2 changed files with 7 additions and 2 deletions
+4 -2
View File
@@ -167,8 +167,10 @@ $dark-splitter-color-hover: color.adjust(
}
}
.splitter-layout .layout-pane {
overflow: hidden;
// we want overflow visible for editor overlays but it breaks resizing
// so we can only apply this when not resizing
.splitter-layout:not(.layout-changing) > .layout-pane {
overflow: visible;
}
// hide the docs and resize separator