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; }