how to set v-text-field height in vuetify3?

356 Views Asked by At

v-text-field dont have height props in vuetify3. only have density prop ('default' | 'comfortable' | 'compact').

v-autocomplate, v-checkbox also.

i try modify css, but There are so many classes in v-text-field that I don't know what to modify.

1

There are 1 best solutions below

1
On

Solved. I changed the height Property to min-height.

.v-field__input {
   height : 22px
}

change to

.v-field__input {
   min-height : 22px
}