fix: role board drop zones extend to bottom of tallest column

Change lanes-container from align-items: flex-start to stretch so all
lanes match the height of the tallest column. Combined with flex: 1 on
lane-items, the drop target area fills the full remaining lane height.
This commit is contained in:
xarmian
2026-04-04 12:03:32 +00:00
parent a2b51693e1
commit 2635823cd2
@@ -565,7 +565,7 @@
gap: var(--space-4);
overflow-x: auto;
flex: 1;
align-items: flex-start;
align-items: stretch;
padding-bottom: var(--space-4);
}