Skip to content

Commit 4fc78f3

Browse files
committed
fix(ui): make raw config textarea scrollable in settings view
The config-main container used overflow:clip which prevented the raw config textarea (min-height: 500px) from being reachable when the viewport is smaller than the textarea height. Changed to overflow-y:auto so the main content area scrolls when the raw config exceeds the available viewport height. Fixes #94202
1 parent 5556f19 commit 4fc78f3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

ui/src/styles/config.css

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,7 @@
173173
min-height: 0;
174174
min-width: 0;
175175
background: var(--panel);
176-
overflow: hidden;
177-
/* fallback for older browsers */
178-
overflow: clip;
176+
overflow-y: auto;
179177
}
180178

181179
/* Actions Bar */

0 commit comments

Comments
 (0)