As I create my Vue.js and Bootstrap application, I am working on a breadcrumb feature that presents some challenges. Specifically, I am trying to align the icons to the right while ensuring that the text "Files" remains floated to the left.
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div class="conatainer-fluid">
<ol class="breadcrumb" style="padding: 0rem 1rem 0rem; background-color: transparent">
<li class="breadcrumb-item active">Files</li>
<li class="pull-right"><i class="fa fa-sort-amount-asc"></i></li>
<li class="pull-right"><i class="fa fa-th-large"></i></li>
<li class="pull-right"><i class="fa fa-list-ul"></i></li>
</ol>
</div>
<hr id="breadcrumb_hr">
Despite my efforts with the pull-right class, I am encountering an issue where the breadcrumb icons are not aligning as intended to the right.
The current layout of the breadcrumb can be seen in this image: https://i.stack.imgur.com/cz5HG.png
I am seeking advice on how to properly address this alignment challenge.