Vuetify radio button, align label left

Just a quick CSS hack to align the radio button label to the left of the radio button…

https://stackoverflow.com/questions/220273/how-can-i-reorder-my-divs-using-only-css

In the Vue code:

<style>
.v-input--selection-controls__input { order: 2; }
</style>

Leave a comment