fix(kanban): make sure the buckets don't appear glued to the bottom

This commit is contained in:
kolaente 2022-02-26 14:28:55 +01:00
parent f54f533700
commit 5b509da215
No known key found for this signature in database
GPG key ID: F40E70337AB24C9B

View file

@ -663,11 +663,12 @@ $filter-container-height: '1rem - #{$switch-view-height}';
position: relative; position: relative;
margin: 0 $bucket-right-margin 0 0; margin: 0 $bucket-right-margin 0 0;
max-height: 100%; max-height: calc(100% - 1rem); // 1rem spacing to the bottom
min-height: 20px; min-height: 20px;
width: $bucket-width; width: $bucket-width;
display: flex; display: flex;
flex-direction: column; flex-direction: column;
overflow: hidden; // Make sure the edges are always rounded
.tasks { .tasks {
overflow: hidden auto; overflow: hidden auto;