fix(kanban): prevent task taps from leaking through the sticky add-task footer on touch devices

The sticky bucket footer had no z-index, so the absolutely positioned
`.handle` overlays on each task (z-index: 1, used to capture taps on
touch devices) stacked above the Add Task button. Tapping the button
where a task scrolled behind it would open that task instead of opening
the new-task input.
This commit is contained in:
Tink bot 2026-05-14 07:25:31 +00:00 committed by kolaente
parent 57a0b8fee4
commit 2ad7efb669
1 changed files with 1 additions and 0 deletions

View File

@ -1094,6 +1094,7 @@ $filter-container-height: '1rem - #{$switch-view-height}';
.bucket-footer {
position: sticky;
inset-block-end: 0;
z-index: 2;
block-size: min-content;
padding: .5rem;
background-color: var(--grey-100);