Here is my card with a nav
section that includes multiple items (although I've only included one here for simplicity).
<div class="col-md-3">
<div class="card">
<div class="card-header">
<h3 class="card-title">title</h3>
</div>
<div class="card-body p-0">
<ul class="nav nav-pills flex-column">
<li class="nav-item">
<NavLink href="javascript: void(0);" @onclick="() => ShowSearch()" class="nav-link">
<span class="fa-li pl-5"><i class="fas fa-search" /></span>
<span class="pl-4">Search</span>
</NavLink>
</li>
</ul>
</div>
<div class="card-footer">
<NavLink href="Back" class="nav-link">
<span class="fa-li pl-5"><i class="fas fa-arrow-alt-circle-left"/></span>
<span class="pl-1">Back</span>
</NavLink>
</div>
</div>
</div>
Despite displaying correctly, including on mobile devices, I am curious about the possibility of changing the appearance of the nav list to resemble a toolbar. This would involve positioning the items side by side within the card-body and displaying only their icons. For example:
https://i.sstatic.net/mgYeO.png
Would it be feasible to achieve this transformation?