fix show add button when multi select active

This commit is contained in:
Dan Percic 2022-01-20 12:34:56 +02:00
parent 215e418e40
commit 212576cb77
2 changed files with 5 additions and 0 deletions

View File

@ -32,6 +32,7 @@
*ngIf="column.entities | async as entities"
[cdkDropListData]="entities"
[cdkDropListEnterPredicate]="canMoveTo(column)"
[class.multi-select-active]="selectionColumn === column"
[id]="column.key"
[itemSize]="itemHeight"
cdkDropList

View File

@ -67,6 +67,10 @@
overflow-y: auto;
@include no-scroll-bar;
min-height: calc(100% - 36px);
&.multi-select-active {
min-height: calc(100% - 86px);
}
}
.item {