fix(webui/overview): restore inner padding on the recessed tab body

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Signed-off-by: librelad <librelad@digitalangels.vip>
This commit is contained in:
librelad 2026-07-04 21:34:05 +01:00
parent 6a1e4e4795
commit b17ecdc192

View File

@ -60,13 +60,13 @@
flex-shrink: 0; flex-shrink: 0;
} }
/* Each tab's content sits flush under the header divider with one shared /* Each tab's body starts one shared 16px gap under the header divider and
16px gap the same rhythm on all five tabs (the Backups/Migrate sub-tab spans the full pane width the same rhythm as the Backups/Migrate sub-tab
strips get the identical gap below), so no tab carries extra inset. The strips, so no tab is narrower than another. The recessed dark surface
recessed dark surface stays, but flush: full pane width, no inner padding. */ keeps its inner 16px so content doesn't collide with the rounded box. */
#overview-view .tab-pane > .ov-tab-body { #overview-view .tab-pane > .ov-tab-body {
margin: 16px 0 0; margin: 16px 0 0;
padding: 0; padding: 16px;
background: rgba(var(--bg-rgb), 0.2); background: rgba(var(--bg-rgb), 0.2);
border-radius: 8px; border-radius: 8px;
} }