From 317ed2137acef0a8e957d2892ce23edb3a43f5e8 Mon Sep 17 00:00:00 2001 From: fen Date: Thu, 10 Sep 2026 09:41:45 -0500 Subject: [PATCH] Settings: more padding between sections (#161) Add margin under the dark mode toggle and between section headings (theme/editor) on /settings via CSS classes, no inline styles (CSP). --- internal/web/static/app.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/internal/web/static/app.css b/internal/web/static/app.css index c84a691..d95d5e0 100644 --- a/internal/web/static/app.css +++ b/internal/web/static/app.css @@ -248,6 +248,11 @@ body { .settings-section-title { color: var(--fg); font-size: 24px; margin-bottom: 6px; } /* theme switcher cards (#100) */ .theme-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; } + +/* #161: more breathing room between settings sections */ +#settings-dark-toggle { margin-bottom: 20px; } +.settings-body h3 { margin-top: 28px; } +.settings-body .theme-grid { margin-bottom: 8px; } .theme-card { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; padding: 14px 16px; min-width: 180px;