aboutsummaryrefslogtreecommitdiffstats
path: root/web/src
diff options
context:
space:
mode:
Diffstat (limited to 'web/src')
-rw-r--r--web/src/css/layout.less5
1 files changed, 5 insertions, 0 deletions
diff --git a/web/src/css/layout.less b/web/src/css/layout.less
index 5869411c..1075d6c9 100644
--- a/web/src/css/layout.less
+++ b/web/src/css/layout.less
@@ -18,6 +18,11 @@ html, body, #container {
.main-view {
flex: 1 1 auto;
+ // All children of #container need an explicit height
+ // If we don't set this, the scrollbars disappear
+ // (https://github.com/mitmproxy/mitmproxy/issues/615)
+ height: 0;
+
display: flex;
flex-direction: row;