recipientLayout: restrict height of options instead of whole fieldset

This commit is contained in:
Felix Hamann 2019-04-25 15:24:39 +02:00
parent 016566d06e
commit 7f38137f53

View File

@ -11,6 +11,11 @@
}
}
.recipient-category__options {
max-height: 150px;
overflow-y: auto;
}
.recipient-category__option {
display: flex;
@ -30,8 +35,6 @@
padding: 5px 0 10px;
border-left: 1px solid #bcbcbc;
padding-left: 16px;
max-height: 200px;
overflow-y: auto;
position: relative;
}
@ -57,6 +60,6 @@
.recipient-category__checked-counter {
position: absolute;
right: 0;
top: 0;
right: 5px;
top: 5px;
}