fix(webui/overview): keep the recessed tab-body surface, only drop its inset

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:30:22 +01:00
parent 06d938e58a
commit 31ce56c022

View File

@ -62,8 +62,14 @@
/* Each tab's content sits flush under the header divider with one shared
16px gap the same rhythm on all five tabs (the Backups/Migrate sub-tab
strips get the identical gap below), so no tab carries extra inset. */
#overview-view .tab-pane > .ov-tab-body { margin: 16px 0 0; }
strips get the identical gap below), so no tab carries extra inset. The
recessed dark surface stays, but flush: full pane width, no inner padding. */
#overview-view .tab-pane > .ov-tab-body {
margin: 16px 0 0;
padding: 0;
background: rgba(var(--bg-rgb), 0.2);
border-radius: 8px;
}
#overview-view .tab-pane > .tabs-wrapper,
#overview-view .tab-pane > .backup-layout > .tabs-wrapper { margin-top: 16px; }