[Vuejs]-Vuetify v-select height of each option very big 40px. I need twice less

0๐Ÿ‘

I have solution.

Just add to styles section custom classes.

Without padding and set less min-height by !important

Minimum is 16px โ€“ min-height: 16px !important;

<style >
 .v-list-item__content{
   padding: 0 !important;
 }
 .v-list-item{
   min-height: 24px !important;
 }
</style>

Leave a comment