From 72fc8a24a5df66870965b58ef3c7e22430f8601b Mon Sep 17 00:00:00 2001 From: Charles Hacskaylo Date: Tue, 26 Mar 2019 22:57:41 -0700 Subject: [PATCH] Fixed for flex-related overflow scrolling issues in Chrome 73/Firefox (#2333) --- src/ui/layout/Layout.vue | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ui/layout/Layout.vue b/src/ui/layout/Layout.vue index dee390c0d6..dce82cfcbb 100644 --- a/src/ui/layout/Layout.vue +++ b/src/ui/layout/Layout.vue @@ -95,6 +95,7 @@ .l-pane__contents { display: flex; flex-flow: column nowrap; + overflow: auto; > * { flex: 0 0 auto; @@ -208,6 +209,8 @@ &__main { // Top and bottom padding in container that holds tree, __pane-main and Inspector padding: $shellMainPad; + min-height: 0; + > .l-pane { padding-top: 0; padding-bottom: 0;