When viewing the vuetify v-bottom-navigation
on certain mobile devices like the iPhone 5/SE, it can look distorted as shown here:
https://i.sstatic.net/XTS8a.png
To fix this issue, I attempted to adjust the spacing between buttons so that it resembles the layout on other devices:
https://i.sstatic.net/ec3Kg.png
I tried using the small
prop/class but unfortunately, it did not have the desired effect:
<v-bottom-navigation>
<v-btn small>
<v-icon>mdi-home-outline</v-icon>
</v-btn>
<!-- ... more buttons here ... -->
</v-bottom-navigation>