chore: fixes filter input multiselect height issue (#3466)
This commit is contained in:
parent
2c3c1888f1
commit
55843c5bad
1 changed files with 6 additions and 0 deletions
|
@ -40,6 +40,7 @@
|
||||||
selected-label
|
selected-label
|
||||||
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
||||||
deselect-label=""
|
deselect-label=""
|
||||||
|
:max-height="160"
|
||||||
:options="dropdownValues"
|
:options="dropdownValues"
|
||||||
:allow-empty="false"
|
:allow-empty="false"
|
||||||
/>
|
/>
|
||||||
|
@ -56,6 +57,7 @@
|
||||||
selected-label
|
selected-label
|
||||||
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
:select-label="$t('FORMS.MULTISELECT.ENTER_TO_SELECT')"
|
||||||
deselect-label=""
|
deselect-label=""
|
||||||
|
:max-height="160"
|
||||||
:options="dropdownValues"
|
:options="dropdownValues"
|
||||||
:allow-empty="false"
|
:allow-empty="false"
|
||||||
:option-height="104"
|
:option-height="104"
|
||||||
|
@ -218,6 +220,10 @@ export default {
|
||||||
.filter__answer--wrap {
|
.filter__answer--wrap {
|
||||||
margin-right: var(--space-smaller);
|
margin-right: var(--space-smaller);
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
|
|
||||||
|
input {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.filter__answer {
|
.filter__answer {
|
||||||
&.answer--text-input {
|
&.answer--text-input {
|
||||||
|
|
Loading…
Reference in a new issue