The layout of my navigation items is problematic on mobile view as they are taking up two lines. The search bar, hamburger menu, and logo are not aligned on a single line which is confusing for users.
Here is an example of the issue in mobile view:
https://i.sstatic.net/m0Cus.png
This is how it should look in desktop view:
https://i.sstatic.net/fAk3c.png
I would appreciate any advice or suggestions to resolve this layout issue.
<!DOCTYPE html>
<html lang="en" dir="ltr">
// Head content here
<body>
<nav class="navbar navbar-expand-md navbar-dark bg-dark justify-content-between">
// Navbar contents here
</nav>
</body>
</html>