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
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B

View File

@ -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;