I'm having trouble centering the v-radio-group
. Here's my current setup:
<v-container grid-list-md text-xs-center>
<v-form ref="form">
<div v-if="question.question_type == 'YESNO' ">
<v-radio-group v-model="answer">
<v-layout>
<v-flex>
<v-radio
value="Yes"
label="Yes"
></v-radio>
</v-flex>
<v-flex>
<v-radio
value="No"
label="No"
></v-radio>
</v-flex>
</v-layout>
</v-radio-group>
</div>
</v-form>
</v-container>
I have attempted to apply the classes 'text-xs-center' and 'justify-center' to form and div tags but it has not resolved the issue. I am striving to align this layout (radio buttons) in the middle of my form.