On some mobile devices (e.g. iPhone 5/SE) the vuetify v-bottom-navigation looks as follows:
To prevent this, I want to move the buttons closer together, so that it looks like on other devices:
My approach was to pass the small prop / class but it didn't work:
<v-bottom-navigation>
<v-btn small>
<v-icon>mdi-home-outline</v-icon>
</v-btn>
<!-- ... more buttons here ... -->
</v-bottom-navigation>

