From 1472f1da0a6c848ced34602c68af78accf5e5e27 Mon Sep 17 00:00:00 2001 From: anti Date: Wed, 22 Apr 2026 17:31:50 -0400 Subject: [PATCH] style(web): drop border on empty-row td in logs tables --- decnet_web/src/components/Dashboard.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/decnet_web/src/components/Dashboard.css b/decnet_web/src/components/Dashboard.css index fb23792e..73d2f240 100644 --- a/decnet_web/src/components/Dashboard.css +++ b/decnet_web/src/components/Dashboard.css @@ -376,6 +376,10 @@ background-color: rgba(0, 255, 65, 0.03); } +.logs-table tr.empty-row td { + border-bottom: none; +} + .raw-line { max-width: 400px; overflow: hidden;