ui: fix height of multiple select input

This commit is contained in:
Jens Langhammer 2020-02-24 12:40:06 +01:00
parent 521a8b5356
commit dc5ba144f1
1 changed files with 5 additions and 0 deletions

View File

@ -16,6 +16,11 @@
max-height: var(--pf-c-login__main-footer-links-item-link-svg--Height);
}
/* fix multiple selects height */
select[multiple] {
height: initial;
}
/* Selector */
.selector {
display: flex;