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:
parent
bbefb2e5a5
commit
67db63ba05
@ -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 */
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user