From 71c2c68fbcfbb083832c996d473e00092c549f6d Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 28 Mar 2026 14:23:14 -0400 Subject: [PATCH] fix: uniform 16px spacing above all settings sections Removing the :first-child { padding-top: 0 } override lets every section use the same padding: 16px 0, so the gap above Export matches the gap above Import (and any future sections). Co-Authored-By: Claude Sonnet 4.6 --- css/app.css | 1 - 1 file changed, 1 deletion(-) diff --git a/css/app.css b/css/app.css index 8fcc37b..f282f14 100644 --- a/css/app.css +++ b/css/app.css @@ -631,7 +631,6 @@ select:focus { border-color: var(--accent); } /* ── 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; } .settings-section-title { font-size: 10px; -- 2.39.5