Skip to content

Commit

Permalink
Make order of menu items same in mobile nav as desktop footer
Browse files Browse the repository at this point in the history
  • Loading branch information
mlandauer committed May 21, 2024
1 parent e46b38a commit 4202822
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/views/_tailwind/application/_footer.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
</ul>
<ul>
<li><%= link_to "About", about_path %></li>
<li><%= link_to "Source code", "https://github.com/openaustralia/planningalerts" %></li>
<li><%= link_to "Get involved", get_involved_path %></li>
<li><%= link_to "Coverage", authorities_path %></li>
<li><%= link_to "Source code", "https://github.com/openaustralia/planningalerts" %></li>
<li><%= link_to "Contact us", documentation_contact_path %></li>
</ul>
</nav>
Expand Down
4 changes: 2 additions & 2 deletions app/views/_tailwind/application/_menu_mobile.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
<li><%= link_to "Get the Data", api_howto_path, class: class_names("decoration-fuchsia", "decoration-4", "underline" => current_page?(api_howto_path)) %></li>
<li><%= link_to "Help", faq_path, class: class_names("decoration-fuchsia", "decoration-4", "underline" => current_page?(faq_path)) %></li>
<li class="mt-4"><%= link_to "About", about_path, class: class_names("decoration-fuchsia", "decoration-4", "underline" => current_page?(about_path)) %></li>
<li><%= link_to "Source code", "https://github.com/openaustralia/planningalerts" %></li>
<li><%= link_to "Get involved", get_involved_path, class: class_names("decoration-fuchsia", "decoration-4", "underline" => current_page?(get_involved_path)) %></li>
<li><%= link_to "Contact us", documentation_contact_path, class: class_names("decoration-fuchsia", "decoration-4", "underline" => current_page?(documentation_contact_path)) %></li>
<li><%= link_to "Coverage", authorities_path, class: class_names("decoration-fuchsia", "decoration-4", "underline" => current_page?(authorities_path)) %></li>
<li><%= link_to "Source code", "https://github.com/openaustralia/planningalerts" %></li>
<li><%= link_to "Contact us", documentation_contact_path, class: class_names("decoration-fuchsia", "decoration-4", "underline" => current_page?(documentation_contact_path)) %></li>
<li class="mt-4">
<% if current_user %>
<div class="inline-block mr-2">
Expand Down

0 comments on commit 4202822

Please sign in to comment.