From 04b73596ea8082201005bcd2e17637434240a7a5 Mon Sep 17 00:00:00 2001 From: Smittix Date: Tue, 27 Jan 2026 22:16:10 +0000 Subject: [PATCH] fix: Prevent sidebar section content from being cut off Change .section overflow from hidden to visible so form elements and buttons display fully within sidebar boxes. Co-Authored-By: Claude Opus 4.5 --- static/css/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/index.css b/static/css/index.css index a319e12..147b42e 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -1303,7 +1303,7 @@ header h1 .tagline { background: var(--bg-tertiary); border: 1px solid var(--border-color); border-radius: 6px; - overflow: hidden; + overflow: visible; padding: 12px; position: relative; }