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

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