FIX: prevents extreme cases to overflow in selected content (#14339)
It would for example cause an issue for a lot of selected items with long names.
This commit is contained in:
parent
856732786f
commit
e263b84196
|
@ -166,6 +166,11 @@
|
|||
display: none;
|
||||
background: var(--secondary);
|
||||
box-sizing: border-box;
|
||||
|
||||
.selected-content {
|
||||
max-height: 300px;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
}
|
||||
|
||||
.select-kit-row {
|
||||
|
|
Loading…
Reference in New Issue