https://codepen.io/bencasalino/pen/NWPLLYQ
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto nav-flex-icons">
<li class="nav-item">
<a class="nav-link p-0 color-white" href="#">
Logout |
</a>
</li>
<li class="nav-item">
<a class="nav-link p-0 color-white" href="#">
Logged in as:
<img src="https://mdbootstrap.com/img/Photos/Avatars/avatar-5.jpg" class="rounded-circle z-depth-0"
alt="avatar image" height="35">
</a>
</li>
</ul>
</div>
There seems to be an issue with the vertical alignment of the elements on the right side of the navbar. Both elements have the same classes and tag types, but for some reason, they are not aligning properly. I'm currently trying to figure out why this is happening.
If you'd like to take a look, I've included a link to the relevant code on Codepen for reference.