From c64ce84e445deb0c2065165725c6ac911ca7534d Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Tue, 26 May 2026 09:51:23 +0200 Subject: [PATCH] fix(dashboard): enable scroll on small screens in Control Dashboard Removed h-full and overflow-auto from the root grid div. h-full was constraining the grid to the viewport height, causing CSS grid to shrink rows to fit instead of overflowing. Parent
already has overflow-auto, so removing the height constraint lets content expand naturally and scroll correctly on small screens. Co-Authored-By: Claude Sonnet 4.6 (1M context) --- src/components/ControlDashboardView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ControlDashboardView.tsx b/src/components/ControlDashboardView.tsx index 4287179..ec61058 100644 --- a/src/components/ControlDashboardView.tsx +++ b/src/components/ControlDashboardView.tsx @@ -382,7 +382,7 @@ export function ControlDashboardView({ const historicalCosmeticSnapshot = dashboardSnapshots[getDaysAgoKey(7)]?.cosmeticItems; return ( -
+