From b18ae577798b42495004bf15cbb6720e4c43a1e6 Mon Sep 17 00:00:00 2001 From: nessi Date: Sat, 7 Feb 2026 18:35:21 +0100 Subject: [PATCH] Make overflow visible in body and left pane Changed the `overflow` property from `hidden` to `visible` in both the `body` and `.leftPane` styles. This update ensures content is not clipped and allows for better handling of overflows. --- frontend/src/AppLayout.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/AppLayout.css b/frontend/src/AppLayout.css index 59b10dc..9a8d9c4 100644 --- a/frontend/src/AppLayout.css +++ b/frontend/src/AppLayout.css @@ -16,12 +16,12 @@ body { gap: 14px; padding: 14px; box-sizing: border-box; - overflow: hidden; + overflow: visible; } /* LEFT COLUMN */ .leftPane { - overflow: hidden; + overflow: visible; min-width: 0; display: grid;