I am having trouble aligning a Font Awesome icon to the end of a card that resizes responsively. This is the HTML code for my card:
<div class="card mt-4 mycard">
<a href="#" style="text-decoration: none; color: inherit">
<div class="card-body">
<h4 class="card-title">Card Title</h4>
<p class="card-text">Description of card, chevron should be at the end of the card, vertically centred even when card width increases</p>
<i class="fas fa-chevron-right fa-3x align-self-center"></i>
</div>
</a>
</div>
The alignment of the chevron is not behaving as desired. Any suggestions on how to fix this issue would be greatly appreciated. Thank you.
Here is an illustration of the desired outcome: https://i.sstatic.net/wO62z.jpg