Search code examples
vue.jscomboboxstylesvuetify.js

Resizing of v-combobox with delete icon


I have a v-combobox that I need to resize. This solution works pretty well, but I have a problem with delete icon in combobox:

enter image description here

How can I solve it? Here is combobox code and styling

      <v-combobox
        outlined
        clearable
      ></v-combobox>

  .v-text-field .v-input__control .v-input__slot {
    min-height: 30px;
  }

Solution

  • This worked for me:

    <style>
      .v-text-field .v-input__control .v-input__slot {
        min-height: 30px;
      }
      .v-text-field.v-text-field--enclosed .v-input__prepend-outer, .v-text-field
      .v-text-field--enclosed .v-input__prepend-inner, .v-text-field.v-text-field--enclosed
      .v-input__append-inner, .v-text-field.v-text-field--enclosed .v-input__append-outer {
        margin-top: 5px;
      }
    </style>