Skip to content

Commit

Permalink
Fix nav bar links on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-kelp committed Jun 29, 2024
1 parent 9f2b5c4 commit 74c6a6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenOversight/app/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
<span class="navbar-toggler-icon"></span>
</button>
<div id="navbar" class="collapse navbar-collapse">
<ul class="navbar-nav">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="{{ url_for("main.browse") }}">Browse</a>
</li>
Expand All @@ -84,7 +84,7 @@
</li>
{% endif %}
</ul>
<ul class="navbar-nav flex-row flex-wrap ms-md-auto">
<ul class="navbar-nav">
{% if current_user and current_user.is_authenticated %}
<li class="dropdown nav-item">
<button class="btn dropdown-toggle"
Expand Down

0 comments on commit 74c6a6b

Please sign in to comment.