My goal is to recreate a navigation bar similar to this design: navbar
I initially attempted to use the grid system for my navbar, but it didn't work out as expected. After some research, I found that using the grid system for navbars is not recommended, so I decided to start fresh.
Now, I am exploring the flexbox approach, but I'm finding it quite confusing. The Bootstrap documentation offers numerous options, making it difficult for me to know where to begin. One specific challenge I'm facing is adjusting the search bar to be slightly offset to the left instead of being centered.
<nav class="navbar navbar-light bg-light" id="mainNav">
<a class="navbar-brand" href="#">
<img src="LogoTeste.png" width="32" height="32" alt="OfertaDB" loading="lazy">
</a>
<div class="justify-content-end">
<button type="button" class="btn btn-outline-dark btn-sm" data-toggle="modal" data-target="#loginmodal"><i class="fa fa-plus"></i> Sign Up
</button>
<button type="button" class="btn btn-outline-primary btn-sm" data-toggle="modal" data-target="#loginmodal"><i class="fas fa-user"></i> Login
</button>
</div>
</nav>