Skip to content

Commit

Permalink
fix: more updates to header
Browse files Browse the repository at this point in the history
  • Loading branch information
CS76 committed Aug 23, 2024
1 parent d96e5a7 commit 535aa85
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion resources/views/livewire/header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,13 @@ class="-m-2.5 inline-flex items-center justify-center rounded-md p-2.5 text-gray
<li class="p-4 lg:px-8">
<a class="text-slate-800 hover:text-slate-900" href="/search">Search</a>
</li>
<li class="p-4 lg:px-8">
<a class="text-slate-800 hover:text-slate-900" href="/collections">Collections</a>
</li>
<li class="p-4 lg:px-8 relative flex items-center space-x-1" x-data="{ open: false }" @mouseenter="open = true" @mouseleave="open = false">
<a class="text-slate-800 hover:text-slate-900" href="#0" :aria-expanded="open" aria-expanded="false">Docs</a>
<button class="shrink-0 p-1" :aria-expanded="open" @click.prevent="open = !open" aria-expanded="false">
<span class="sr-only">Show submenu for "Flyout Menu"</span>
<span class="sr-only">Docs</span>
<svg class="w-3 h-3 fill-slate-500" xmlns="http://www.w3.org/2000/svg" width="12" height="12">
<path d="M10 2.586 11.414 4 6 9.414.586 4 2 2.586l4 4z"></path>
</svg>
Expand Down

0 comments on commit 535aa85

Please sign in to comment.