From f160eccdae835b5e434f0fe74321fcfa0fc2e825 Mon Sep 17 00:00:00 2001 From: anti Date: Thu, 21 May 2026 15:44:08 -0400 Subject: [PATCH] =?UTF-8?q?fix(ui):=20scope=20empty-state=20color=20and=20?= =?UTF-8?q?font=20to=20dashboard=20context=20=E2=80=94=20suppress=20matrix?= =?UTF-8?q?-green=20bleed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- decnet_web/src/components/Dashboard.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/decnet_web/src/components/Dashboard.css b/decnet_web/src/components/Dashboard.css index b2b23178..1217db59 100644 --- a/decnet_web/src/components/Dashboard.css +++ b/decnet_web/src/components/Dashboard.css @@ -589,3 +589,15 @@ flex-wrap: wrap; gap: 6px; } + +/* Align EmptyState color and font with the dim-grey convention used across + all other section containers (logs-root, attackers-root, bounty-root…). + Without this, the global body color (var(--matrix) green) bleeds in. */ +.dashboard .empty-state .empty-state-icon { + color: var(--violet); +} +.dashboard .empty-state .type-label { + color: var(--text-dim, #888); + font-size: 0.7rem; + letter-spacing: 2px; +}