Skip to content

Commit db80893

Browse files
[ui] update settings page layout to flex-col (#3214)
It's been a little tricky to use the settings page. tiny fix to make it a little more readable **Current** <img width="1509" height="833" alt="Screenshot 2025-07-14 at 19 11 20" src="https://github.com/user-attachments/assets/2abf59a6-d1e1-44c9-9b37-870ad338f128" /> **Proposed** <img width="1505" height="841" alt="Screenshot 2025-07-14 at 19 11 14" src="https://github.com/user-attachments/assets/5842ea35-af9a-41a2-9aef-01daa810c333" />
1 parent 7b67d6f commit db80893

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ui/app/settings/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -232,9 +232,9 @@ export default function SettingsPage() {
232232
/>
233233
<div
234234
style={{
235-
display: 'grid',
236-
gridTemplateColumns: 'repeat(auto-fit, minmax(300px, 1fr))',
237-
gap: '16px',
235+
display: 'flex',
236+
flexDirection: 'column',
237+
rowGap: '0.5rem'
238238
}}
239239
>
240240
{filteredSettings.map((setting) => (

0 commit comments

Comments
 (0)