I am facing an issue with aligning a button modal to the right side. I attempted using bootstrap classes like :
float:right, mt:20
Unfortunately, these did not have the desired effect. Below is my code snippet:
<b-modal ref="my-modal" hide-footer title="Using Component Methods" v-model="modalShow">
<div class="d-block text-center">
<h3>Hello From My Modal!</h3>
</div>
<b-button class="mt-3" variant="outline-danger" block @click="hideModal">Close Me</b-button>
</b-modal>
Any suggestions on how to resolve this alignment issue? Thank you.