From 51a51a0ba2462bb2b028d1fe7100739a0c17ae72 Mon Sep 17 00:00:00 2001 From: danielaustralia1 <40316131+danielaustralia1@users.noreply.github.com> Date: Fri, 20 Mar 2026 00:48:15 +1100 Subject: [PATCH] fix: enable vertical scrolling on tasks board columns (#452) Add min-h-0 to the kanban board flex container and its column children so that overflow-y-auto on column bodies can actually trigger. Without this, flexbox min-height:auto causes containers to grow unbounded instead of constraining height and enabling scroll. Fixes #376 Co-authored-by: Dan --- src/components/panels/task-board-panel.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/panels/task-board-panel.tsx b/src/components/panels/task-board-panel.tsx index 548143e..e2743c7 100644 --- a/src/components/panels/task-board-panel.tsx +++ b/src/components/panels/task-board-panel.tsx @@ -926,13 +926,13 @@ export function TaskBoardPanel() { )} {/* Kanban Board */} -
+
{statusColumns.map(column => (
handleDragEnter(e, column.key)} onDragLeave={handleDragLeave} onDragOver={handleDragOver}