Vuetify v-navigation-drawer mini-variant width

1.2k Views Asked by At

Whilest you can set the width of the of the unfolded drawer like this

<v-navigation-drawer ... width="250">

How can i set the wisth for the collapsed mini-variant?

1

There are 1 best solutions below

0
On BEST ANSWER

If you are using the lastest vuetify version, you can use the prop mini-variant-width to set the width for the mini variant. (default 56px)

<v-navigation-drawer
   v-model="drawer"
   :mini-variant.sync="mini"
   mini-variant-width="80px"
   permanent
>
  ...
</v-navigation-drawer>

https://vuetifyjs.com/en/api/v-navigation-drawer/#props-mini-variant-width