fix: uniform 16px spacing above all settings sections
All checks were successful
CI / test (pull_request) Successful in 12s
CI / build-dev (pull_request) Has been skipped

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 <noreply@anthropic.com>
This commit is contained in:
2026-03-28 14:23:14 -04:00
parent 8bcf8229db
commit 71c2c68fbc

View File

@@ -631,7 +631,6 @@ select:focus { border-color: var(--accent); }
/* ── SETTINGS MODAL ── */ /* ── SETTINGS MODAL ── */
#settings-modal .modal-body { padding-top: 0; } #settings-modal .modal-body { padding-top: 0; }
.settings-section { padding: 16px 0; border-bottom: 1px solid var(--border); } .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:last-child { border-bottom: none; padding-bottom: 0; }
.settings-section-title { .settings-section-title {
font-size: 10px; font-size: 10px;