fix(bases): make kanban board claim remaining flex height so columns scroll

This commit is contained in:
Philipinho
2026-05-25 16:44:22 +01:00
parent bd194c8bd5
commit 48ff82800b
@@ -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;
}