From c0b1cbdc5b1d67f207bca81d52bfaf589801ebc5 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 26 Mar 2026 21:24:35 +0100 Subject: [PATCH] fix: remove inset background from LogViewer container LogViewer was using --bg-inset which created a visual mismatch with the EventFeed timeline panel. Now inherits the parent card's background (--bg-surface) for consistent appearance in side-by-side layouts. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/design-system/composites/LogViewer/LogViewer.module.css | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/design-system/composites/LogViewer/LogViewer.module.css b/src/design-system/composites/LogViewer/LogViewer.module.css index 70a468c..31522fb 100644 --- a/src/design-system/composites/LogViewer/LogViewer.module.css +++ b/src/design-system/composites/LogViewer/LogViewer.module.css @@ -1,7 +1,5 @@ .container { overflow-y: auto; - background: var(--bg-inset); - border-radius: var(--radius-md); padding: 8px 0; font-family: var(--font-mono); }