From 5b509da215d857d02f31d0555a33d5fa6204be1c Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 26 Feb 2022 14:28:55 +0100 Subject: [PATCH] fix(kanban): make sure the buckets don't appear glued to the bottom --- src/views/list/ListKanban.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/list/ListKanban.vue b/src/views/list/ListKanban.vue index 7591d8da..639a6ecb 100644 --- a/src/views/list/ListKanban.vue +++ b/src/views/list/ListKanban.vue @@ -663,11 +663,12 @@ $filter-container-height: '1rem - #{$switch-view-height}'; position: relative; margin: 0 $bucket-right-margin 0 0; - max-height: 100%; + max-height: calc(100% - 1rem); // 1rem spacing to the bottom min-height: 20px; width: $bucket-width; display: flex; flex-direction: column; + overflow: hidden; // Make sure the edges are always rounded .tasks { overflow: hidden auto;