fix(kanban): make sure the buckets don't appear glued to the bottom
This commit is contained in:
parent
f54f533700
commit
5b509da215
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue