From 67db63ba05c81638001d9cc06594b3601f746e63 Mon Sep 17 00:00:00 2001 From: Robby Date: Sun, 25 Jan 2026 12:34:01 +0100 Subject: [PATCH] fix: enable scrolling in settings page on Windows (#1780) Fixes #1743 The settings page was unable to scroll because .config-layout has overflow:hidden which blocks child scrolling. Added min-height:0 and overflow-y:auto to .config-main to enable scrolling within the grid layout. --- ui/src/styles/config.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/styles/config.css b/ui/src/styles/config.css index dc0116c6d..29ce19d8e 100644 --- a/ui/src/styles/config.css +++ b/ui/src/styles/config.css @@ -242,8 +242,10 @@ .config-main { display: flex; flex-direction: column; + min-height: 0; min-width: 0; background: var(--panel); + overflow-y: auto; } /* Actions Bar */