From b8bc097f6f99f8056ef9cf71f1316531662e265d Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Wed, 11 Mar 2026 22:47:00 +0800 Subject: [PATCH] Fix Upcoming card to match grid row height with internal scroll MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replace fixed maxHeight 520px with h-full + overflow-hidden so the card stretches to match the right column height in the grid row. The flex chain (Card flex-col → CardContent flex-1 min-h-0 → ScrollArea flex-1 min-h-0) ensures content scrolls internally within the row-determined height instead of capping independently. Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/dashboard/UpcomingWidget.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/dashboard/UpcomingWidget.tsx b/frontend/src/components/dashboard/UpcomingWidget.tsx index 56991be..7a18533 100644 --- a/frontend/src/components/dashboard/UpcomingWidget.tsx +++ b/frontend/src/components/dashboard/UpcomingWidget.tsx @@ -177,7 +177,7 @@ export default function UpcomingWidget({ items }: UpcomingWidgetProps) { const dayEntries = Array.from(grouped.entries()); return ( - +