I'm currently utilizing Vuetify as our primary framework and incorporating some Bootstrap-Vue components such as b-form-checkbox and radio.
I am facing a challenge in trying to vertically center my Bootstrap-Vue checkbox and text. I have attempted several solutions including:
- Using vertical-align="baseline"
- Applying align="center"
- Testing justify="center" (even though it's typically for horizontal alignment)
- Utilizing class="align-middle"
The structure of my framework is as follows:
<v-container>
<v-card>
<v-card-text>
<v-row>
<v-col>
<b-form-checkbox>
ABCD
</b-form-checkbox>
....
</v-container>
I have tried implementing the solutions within v-col, v-row, and b-form-checkbox, as well as wrapping the checkbox with a span and adding it to the span as well, unfortunately, none of these methods have proven successful.
If anyone has a solution to this, please lend a hand!