From 8bf6c44485dfa73f33f59b3bfd72f4efe86718de Mon Sep 17 00:00:00 2001 From: Ruslan Date: Mon, 8 Jun 2026 09:37:18 +0000 Subject: [PATCH] Fix left panel overflow: top-align content, allow vertical scroll --- app/static/style.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/static/style.css b/app/static/style.css index f6f5617..4bd86a8 100644 --- a/app/static/style.css +++ b/app/static/style.css @@ -932,9 +932,10 @@ button { background: linear-gradient(150deg, #050d1a 0%, #091829 55%, #0e2344 100%); position: relative; display: flex; - align-items: center; + align-items: flex-start; justify-content: center; - overflow: hidden; + overflow-x: hidden; + overflow-y: auto; padding: 3rem; box-sizing: border-box; }