From b6cc0f698458cae412597da94d43c4f8a3908cd7 Mon Sep 17 00:00:00 2001 From: elpatron Date: Fri, 19 Jun 2026 23:08:21 +0200 Subject: [PATCH] Fix vertical spacing in the viewer backup sidebar section. Use flex gap so export and import buttons no longer sit flush against each other. Co-authored-by: Cursor --- static/style.css | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/static/style.css b/static/style.css index 652288b..0b54289 100644 --- a/static/style.css +++ b/static/style.css @@ -1026,16 +1026,18 @@ tr.has-goal td:first-child { font-weight: 600; } display: block; text-align: center; text-decoration: none; - margin-top: 8px; } .sidebar-backup-block { - margin-top: 12px; - padding-top: 12px; + margin-top: 4px; + padding-top: 14px; border-top: 1px solid var(--border); + display: flex; + flex-direction: column; + gap: 10px; } .sidebar-backup-label { - margin: 0 0 8px; + margin: 0; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; @@ -1043,7 +1045,7 @@ tr.has-goal td:first-child { font-weight: 600; } color: var(--text-muted); } .sidebar-backup-help { - margin-top: 10px; + margin-top: 2px; font-size: 0.78rem; color: var(--text-muted); }