From 48ff82800b680adc51a79d6857e0c714f02887ba Mon Sep 17 00:00:00 2001 From: Philipinho <16838612+Philipinho@users.noreply.github.com> Date: Mon, 25 May 2026 16:44:22 +0100 Subject: [PATCH] fix(bases): make kanban board claim remaining flex height so columns scroll --- apps/client/src/features/base/styles/kanban.module.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/apps/client/src/features/base/styles/kanban.module.css b/apps/client/src/features/base/styles/kanban.module.css index 3bd9a5b0f..b3247e5c2 100644 --- a/apps/client/src/features/base/styles/kanban.module.css +++ b/apps/client/src/features/base/styles/kanban.module.css @@ -1,11 +1,15 @@ .board { + /* Claim remaining height in the flex-column wrapper after chips strip + * and sort hint take their natural heights. Without flex:1+min-height:0 + * the board's children (columns) wouldn't have a bounded height and + * `.columnBody`'s `overflow-y: auto` would never engage. */ display: flex; flex-direction: row; gap: 12px; padding: 12px; overflow-x: auto; overflow-y: hidden; - height: 100%; + flex: 1; min-height: 0; align-items: stretch; }