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 <cursoragent@cursor.com>
This commit is contained in:
2026-06-19 23:08:21 +02:00
parent 7656578b72
commit b6cc0f6984
+7 -5
View File
@@ -1026,16 +1026,18 @@ tr.has-goal td:first-child { font-weight: 600; }
display: block; display: block;
text-align: center; text-align: center;
text-decoration: none; text-decoration: none;
margin-top: 8px;
} }
.sidebar-backup-block { .sidebar-backup-block {
margin-top: 12px; margin-top: 4px;
padding-top: 12px; padding-top: 14px;
border-top: 1px solid var(--border); border-top: 1px solid var(--border);
display: flex;
flex-direction: column;
gap: 10px;
} }
.sidebar-backup-label { .sidebar-backup-label {
margin: 0 0 8px; margin: 0;
font-size: 0.72rem; font-size: 0.72rem;
font-weight: 700; font-weight: 700;
text-transform: uppercase; text-transform: uppercase;
@@ -1043,7 +1045,7 @@ tr.has-goal td:first-child { font-weight: 600; }
color: var(--text-muted); color: var(--text-muted);
} }
.sidebar-backup-help { .sidebar-backup-help {
margin-top: 10px; margin-top: 2px;
font-size: 0.78rem; font-size: 0.78rem;
color: var(--text-muted); color: var(--text-muted);
} }