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

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 {