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:
Joffrey JAFFEUX 2021-09-14 16:49:43 +02:00 committed by GitHub
parent 856732786f
commit e263b84196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -166,6 +166,11 @@
display: none;
background: var(--secondary);
box-sizing: border-box;
.selected-content {
max-height: 300px;
overflow-y: scroll;
}
}
.select-kit-row {