From fca095343953599996a33a84f4f4a7d7e3c9f62f Mon Sep 17 00:00:00 2001 From: anti Date: Thu, 30 Apr 2026 00:27:47 -0400 Subject: [PATCH] fix(ui): dashboard grid fills available viewport height Use flex: 1 on dash-grid instead of height: 480px so the panels consume all remaining space below the stat cards; dash-side uses height: 100% to fill its grid cell --- decnet_web/src/components/Dashboard.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/decnet_web/src/components/Dashboard.css b/decnet_web/src/components/Dashboard.css index 86911b51..9666b225 100644 --- a/decnet_web/src/components/Dashboard.css +++ b/decnet_web/src/components/Dashboard.css @@ -260,7 +260,8 @@ display: grid; grid-template-columns: 2fr 1fr; gap: 16px; - height: 480px; + flex: 1; + min-height: 0; } .dash-grid > .logs-section { @@ -281,6 +282,7 @@ flex-direction: column; gap: 16px; min-height: 0; + height: 100%; } .dash-side > .logs-section {