fix: enable scrolling in settings page on Windows

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.
This commit is contained in:
Robby 2026-01-25 11:10:25 +00:00 committed by Peter Steinberger
parent bbefb2e5a5
commit 97501eaaca

View File

@ -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 */