From 6d0fdb12673cb9765ea5c5ba3d7fd0bd62210793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=BD=E5=B7=A5=E5=91=98?= <4846a27a-ba87-49c9-939d-7275f63efcc7@agents.multica.local> Date: Sat, 22 Aug 2026 20:57:04 +0800 Subject: [PATCH] HEL-33: align sidebar brand height with topbar and status bar with collapse button - .sidebar-brand min-height 55px -> var(--topbar-height) so brand top/bottom align with app-header (64px) - --size-statusbar 28px -> 38px so status bar top/bottom align with sidebar collapse button (38px) - bump tokens.css and shell.css cache-busting versions in index.html Co-authored-by: multica-agent --- app/config/architecture-inventory.json | 6 +++--- app/frontend/index.html | 4 ++-- app/frontend/shared/shell.css | 2 +- app/frontend/shared/tokens.css | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/config/architecture-inventory.json b/app/config/architecture-inventory.json index d81168f..0bc6cce 100644 --- a/app/config/architecture-inventory.json +++ b/app/config/architecture-inventory.json @@ -370,9 +370,9 @@ } ], "css_layers": [ - "/shared/tokens.css?v=20260820-3", + "/shared/tokens.css?v=20260820-4", "/shared/base.css?v=20260806-1", - "/shared/shell.css?v=20260820-8", + "/shared/shell.css?v=20260820-9", "/shared/auth.css?v=20260820-5", "/shared/components/controls.css?v=20260820-2", "/shared/components/navigation.css?v=20260820-1", @@ -451,7 +451,7 @@ }, { "path": "frontend/shared/shell.css", - "bytes": 63550, + "bytes": 63566, "lines": 3757 }, { diff --git a/app/frontend/index.html b/app/frontend/index.html index d4306a9..06d796d 100644 --- a/app/frontend/index.html +++ b/app/frontend/index.html @@ -17,9 +17,9 @@ document.documentElement.style.colorScheme = theme; })(); - + - + diff --git a/app/frontend/shared/shell.css b/app/frontend/shared/shell.css index 0de2241..c1e5320 100644 --- a/app/frontend/shared/shell.css +++ b/app/frontend/shared/shell.css @@ -1294,7 +1294,7 @@ body.sidebar-collapsed { } .sidebar-brand { - min-height: 55px; + min-height: var(--topbar-height); display: flex; diff --git a/app/frontend/shared/tokens.css b/app/frontend/shared/tokens.css index 5391ed9..66470ce 100644 --- a/app/frontend/shared/tokens.css +++ b/app/frontend/shared/tokens.css @@ -58,7 +58,7 @@ --size-sidebar: 200px; --size-topbar: 64px; --size-summary: 0px; - --size-statusbar: 28px; + --size-statusbar: 38px; --size-page-pad-y: 14px; --size-page-pad-x: 16px; --size-card-gap: 12px;