Struggling to create a left-hand side navigation card with Bootstrap and Bootstrap icons. The goal is to have the page name on the left and an icon on the right, but vertical alignment is posing a challenge.
Take a look at the code snippet below:
<b-list-group>
<b-list-group-item active to="/home" class="align-items-center">
<div>
<span>Home</span>
<span><b-icon-house class="float-right" /></span>
</div>
</b-list-group-item>
</b-list-group>
Additionally, Vue-Bootstrap is being utilized, although it should not impact this issue.