I'm currently in the process of creating a navigation bar, and here's what I have so far:
<!-- #region Navigation -->
<div class="container ">
<nav class="navbar navbar-fixed-top bg-white box-shadow " style="border-bottom: 4px solid #2878b7;">
<a class="navbar-brand" href="@_appSettings.Value.CandidateUrl">
<customerImage></customerImage>
</a>
</nav>
</div>
<!-- #endregion -->
When my screen is at its full size, the image looks like this: https://i.sstatic.net/QVLbw.png
However, when I reduce the screen size, the image does not align as intended. It should look like this:
https://i.sstatic.net/WdvFD.png
Please advise on how I can center the image properly when the screen size is reduced.