Is there a way to align a fontawesome icon to the right while keeping it vertically centered? I've attempted using ml-auto and Flexbox, but haven't had any success.
Below is the code snippet:
<ul class="list-group flex-column">
<li class="list-group-item py-2 d-flex justify-content-start">
<a href="#">
<img src="https://placehold.it/40x40" height="40" class="mr-4">
<span>Text Here</span>
<i class="fa fa-angle-right ml-auto" aria-hidden="true"></i>
</a>
</li>
</ul>
If anyone has a solution, I would greatly appreciate your help. Thank you!