Skip to content

Commit

Permalink
Optimize nav for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
Luke-Oldenburg committed Dec 30, 2024
1 parent b5fe48a commit 92814a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ const pages = [

<!-- Mobile Navbar -->
<nav
class="sticky left-0 top-0 flex w-full flex-wrap items-center justify-between gap-3 bg-bot-blue px-5 py-5 md:hidden"
class="sticky left-0 top-0 flex w-full flex-wrap items-center justify-between bg-bot-blue p-3 md:hidden"
>
<a class="hover:text-orange mx-5 text-xl font-bold text-white" href="/">
<a class="hover:text-orange p-1 text-lg font-bold text-white" href="/">
Back on Track America
</a>
<button
class="content-end text-white focus:outline-none"
class="content-end text-lg font-bold text-white focus:outline-none"
onclick="document.getElementById('mobile-menu').classList.toggle('hidden')"
>
&#9776;
Expand Down

0 comments on commit 92814a6

Please sign in to comment.