Is there a way to adjust the spacing between two horizontal radio buttons? The buttons are part of the same group, and I want to shift the right button ("Clear Selection") further to the right so it aligns with the buttons in another group below.
<v-radio-group v-model="consent.newselection2"
row
>
<v-radio
class="radio"
color="yellow"
v-for="item in conclusionnewitems2"
:rules="rules"
:key="item"
:label="item.label"
:value="item.value"
></v-radio>
</v-radio-group>
conclusionnewitems2: [
{ label: "Website", value: {'var1':"On our website", 'var2': "included on our website"}},
{ label: "Clear selection", value: "null"},
],