I'm using Vuetify as our primary framework and added some of Bootstrap-Vue components like b-form-checkbox&radio.
I'm trying to figure it out how to vertical center my bootstrap-vue checkbox and text. so far, I've tried::
- vertical-align="baseline"
- align="center"
- justify="center" // I know it's for horizontal but... I've tried anyway
- class="align-middle"
My framework structure is
<v-container>
<v-card>
<v-card-text>
<v-row>
<v-col>
<b-form-checkbox>
ABCD
</b-form-checkbox>
....
</v-container>
I've tried adding them into v-col, v-row and b-form-checkbox, and wrapped checkbox with span and added into span too but none of them worked.
Please help!