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.
This commit is contained in:
Robby 2026-01-25 12:34:01 +01:00 committed by GitHub
parent bbefb2e5a5
commit 67db63ba05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -242,8 +242,10 @@
.config-main { .config-main {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
min-height: 0;
min-width: 0; min-width: 0;
background: var(--panel); background: var(--panel);
overflow-y: auto;
} }
/* Actions Bar */ /* Actions Bar */