From 66e230f740b869c9919804ecab960eeb4bfa2b1e Mon Sep 17 00:00:00 2001 From: Kyle Pope Date: Wed, 11 Mar 2026 23:21:04 +0800 Subject: [PATCH] Make right column cards fill height to align with Upcoming card Wrap TodoWidget in flex-1 container and add h-full to its Card so the Upcoming Todos card stretches to fill remaining space in the right column, keeping both columns visually aligned. Co-Authored-By: Claude Opus 4.6 --- frontend/src/components/dashboard/DashboardPage.tsx | 4 +++- frontend/src/components/dashboard/TodoWidget.tsx | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/dashboard/DashboardPage.tsx b/frontend/src/components/dashboard/DashboardPage.tsx index 6902b39..2972677 100644 --- a/frontend/src/components/dashboard/DashboardPage.tsx +++ b/frontend/src/components/dashboard/DashboardPage.tsx @@ -199,7 +199,9 @@ export default function DashboardPage() { )} - +
+ +
diff --git a/frontend/src/components/dashboard/TodoWidget.tsx b/frontend/src/components/dashboard/TodoWidget.tsx index da3bcea..1afab55 100644 --- a/frontend/src/components/dashboard/TodoWidget.tsx +++ b/frontend/src/components/dashboard/TodoWidget.tsx @@ -33,7 +33,7 @@ export default function TodoWidget({ todos }: TodoWidgetProps) { const navigate = useNavigate(); return ( - +