From b17ecdc1923d5ddabc3906a48f74d2ee0cb553d4 Mon Sep 17 00:00:00 2001 From: librelad Date: Sat, 4 Jul 2026 21:34:05 +0100 Subject: [PATCH] fix(webui/overview): restore inner padding on the recessed tab body Co-Authored-By: Claude Fable 5 Signed-off-by: librelad --- .../frontend/components/apps/overview/css/overview.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/containers/libreportal/frontend/components/apps/overview/css/overview.css b/containers/libreportal/frontend/components/apps/overview/css/overview.css index f238a5c..7e838c2 100644 --- a/containers/libreportal/frontend/components/apps/overview/css/overview.css +++ b/containers/libreportal/frontend/components/apps/overview/css/overview.css @@ -60,13 +60,13 @@ flex-shrink: 0; } -/* 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. The - recessed dark surface stays, but flush: full pane width, no inner padding. */ +/* Each tab's body starts one shared 16px gap under the header divider and + spans the full pane width — the same rhythm as the Backups/Migrate sub-tab + strips, so no tab is narrower than another. The recessed dark surface + keeps its inner 16px so content doesn't collide with the rounded box. */ #overview-view .tab-pane > .ov-tab-body { margin: 16px 0 0; - padding: 0; + padding: 16px; background: rgba(var(--bg-rgb), 0.2); border-radius: 8px; }