Bug in Select Component when using IftaLabel #4758
Unanswered
T2AComunicacao
asked this question in
PrimeVue
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
There are bug in the height of the Select Component when using IftaLabel with size property, like size="small" or size="large".
When the properties size="small" or size="large" are in the Select component with the IftaLabel, comparing this component with other similares like InputText, InputNumber, DatePicker and others, the height is totally different.
To correct the problem, we used the CSS below:
/* IftaLabel for Select component correction */
.p-iftalabel .p-select-lg .p-select-label {
padding-block-start: var(--p-iftalabel-input-padding-top);
padding-block-end: var(--p-iftalabel-input-padding-bottom);
}
.p-iftalabel .p-select-sm .p-select-label {
padding-block-start: var(--p-iftalabel-input-padding-top);
padding-block-end: var(--p-iftalabel-input-padding-bottom);
}
Beta Was this translation helpful? Give feedback.
All reactions