From 69f33763ab7ff5876cff23fb90cfd2497b3fe371 Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Mon, 7 Feb 2022 22:50:02 +0100 Subject: [PATCH] styling: make sure visualizer does not overflow --- web/pw-server/src/routes/index.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/pw-server/src/routes/index.svelte b/web/pw-server/src/routes/index.svelte index 7cecba7..f8dc03f 100644 --- a/web/pw-server/src/routes/index.svelte +++ b/web/pw-server/src/routes/index.svelte @@ -121,11 +121,13 @@ height: 40px; background-color: $bg-color; border-bottom: 1px solid; + flex-shrink: 0; } .container { display: flex; flex-grow: 1; + min-height: 0; } .sidebar-left { @@ -140,6 +142,7 @@ } .editor-container { flex-grow: 1; + flex-shrink: 1; overflow: hidden; }