Vuetify Version: 2.0.1
Last working version: 2.0.1
Vue Version: 2.6.10
Browsers: Google Chrome, Safari, Microsoft Edge, Internet Explorer, Mozilla Firefox, Opera, Other
OS: Windows, Android, iOS, Mac OSX, Linux
v-btn
no letter spacing in Arabic
there is letter spacing in Arabic
Workaround for now would be to manually remove the letter-spacing with css as you have demonstrated in your example..
Workaround: Add in your App.vue style:
.v-application--is-rtl .v-btn {
letter-spacing: 0 !important;
}
Most helpful comment
Workaround: Add in your App.vue style: