From 6e1e9f7153bdd1132ea6d66e36dcd0a4578060e4 Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 28 Mar 2026 14:19:39 -0400 Subject: [PATCH] fix: remove top padding from settings modal body The modal-body's 22px padding-top created a visible gap between the header divider and the Export section title. Co-Authored-By: Claude Sonnet 4.6 --- css/app.css | 1 + 1 file changed, 1 insertion(+) diff --git a/css/app.css b/css/app.css index 06b8bb6..8fcc37b 100644 --- a/css/app.css +++ b/css/app.css @@ -629,6 +629,7 @@ select:focus { border-color: var(--accent); } .confirm-actions { display: flex; justify-content: flex-end; gap: 10px; } /* ── SETTINGS MODAL ── */ +#settings-modal .modal-body { padding-top: 0; } .settings-section { padding: 16px 0; border-bottom: 1px solid var(--border); } .settings-section:first-child { padding-top: 0; } .settings-section:last-child { border-bottom: none; padding-bottom: 0; } -- 2.39.5