I am struggling to get the buttons on the card to align properly. I have set a minimum height to ensure they are consistent in size regardless of content, but the alignment of the buttons is off. Take a look at the photo attached for reference - I want them to be vertically aligned.
Here is the code snippet:
<div class="col" v-for="o in services" :key="o.id">
<div class="card d-flex" style="width: 25rem; min-height: 38rem;" >
<img :src=o.foto class="card-img-top" style="max-height: 15rem;" alt="...">
<div class="card-body">
<h5 class="card-title fs-3">{{o.nombre}}</h5>
<p class="card-text fs-6">{{o.descripcion}}</p>
<a href="#" class="btn btn-primary d-flex justify-content-center mt-3">IR</a>
</div>
</div>
</div>
Please assist me in achieving proper button alignment. Thank you.