From efad01b717b47f221a21be564f81f14d5625e800 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Mon, 24 Nov 2025 08:09:52 +0000 Subject: [PATCH] Fix dashboard layout on wide screens and remove wasted whitespace #643 --- frontend-modern/src/components/Dashboard/Dashboard.tsx | 2 +- frontend-modern/src/index.css | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend-modern/src/components/Dashboard/Dashboard.tsx b/frontend-modern/src/components/Dashboard/Dashboard.tsx index 7bbdcff..eda36d7 100644 --- a/frontend-modern/src/components/Dashboard/Dashboard.tsx +++ b/frontend-modern/src/components/Dashboard/Dashboard.tsx @@ -932,7 +932,7 @@ export function Dashboard(props: DashboardProps) { handleSort('name')} onKeyDown={(e) => e.key === 'Enter' && handleSort('name')} tabindex="0" diff --git a/frontend-modern/src/index.css b/frontend-modern/src/index.css index 07a4cec..a4edab1 100644 --- a/frontend-modern/src/index.css +++ b/frontend-modern/src/index.css @@ -126,9 +126,9 @@ @layer components { .pulse-shell { width: 100%; - max-width: clamp(95rem, 92vw, 120rem); + max-width: 100%; margin-inline: auto; - padding-inline: clamp(1rem, 3vw, 3.25rem); + padding-inline: clamp(1rem, 1.5vw, 2rem); transition: padding-inline 0.3s ease; }