From c0950537abdcf906bc62eaa0b9466aa8beca9ea5 Mon Sep 17 00:00:00 2001 From: Flaminel Date: Sun, 14 Jun 2026 17:49:32 +0300 Subject: [PATCH] Fix width of the recent events card (#630) --- .../src/app/features/dashboard/dashboard.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/frontend/src/app/features/dashboard/dashboard.component.scss b/code/frontend/src/app/features/dashboard/dashboard.component.scss index 20d702b8..43a2812d 100644 --- a/code/frontend/src/app/features/dashboard/dashboard.component.scss +++ b/code/frontend/src/app/features/dashboard/dashboard.component.scss @@ -126,7 +126,7 @@ // Logs + Events side-by-side row .logs-events-row { display: grid; - grid-template-columns: repeat(2, 1fr); + grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--space-6); @media (max-width: 1024px) {