From 0985d9d481e49348d0ccdc48dafb590f2476799b Mon Sep 17 00:00:00 2001 From: josh Date: Sat, 28 Mar 2026 14:15:25 -0400 Subject: [PATCH] fix: remove top gap above first settings section padding-top on the first .settings-section created a visible gap above the Export title. Fixed with :first-child { padding-top: 0 }. 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 5595d55..06b8bb6 100644 --- a/css/app.css +++ b/css/app.css @@ -630,6 +630,7 @@ select:focus { border-color: var(--accent); } /* ── SETTINGS MODAL ── */ .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;