From 2635823cd2e37659a2878e025ff4b956b2c29cb6 Mon Sep 17 00:00:00 2001 From: xarmian Date: Sat, 4 Apr 2026 12:03:32 +0000 Subject: [PATCH] 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. --- web/src/routes/[workspace]/roles/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/routes/[workspace]/roles/+page.svelte b/web/src/routes/[workspace]/roles/+page.svelte index 2d1fd243..814fbeba 100644 --- a/web/src/routes/[workspace]/roles/+page.svelte +++ b/web/src/routes/[workspace]/roles/+page.svelte @@ -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); }