Make dropdown scrollable

This commit is contained in:
Michael Weimann 2022-07-21 18:40:37 +02:00 committed by Igor Scheller
parent e750436a82
commit dd8868a6f8
1 changed files with 6 additions and 0 deletions

View File

@ -167,6 +167,12 @@ table a > .icon-icon_angel {
}
}
.dropdown-menu {
// prevent dropdown-menu from overflowing the view
max-height: calc(100vh - $navbar-height - 16px); // 16px extra padding
overflow: auto;
}
.selection .checkbox {
display: block;
}