Skip to content

Commit

Permalink
Update navbar.blade.php
Browse files Browse the repository at this point in the history
  • Loading branch information
sertxudev authored Oct 3, 2024
1 parent 411607e commit ed5963a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/components/navbar.blade.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<nav x-data="{ open: false }" class="top-0 sticky">
<nav x-data="{ open: false }" class="top-0 sticky z-30">
<div class="flex justify-between max-w-screen-lg mx-auto items-center relative py-2.5 px-6 bg-dark-300 shadow-sm xl:px-0 z-30">
<a href="{{ route('home') }}" class="outline-none" wire:navigate>
@persist('logo')
Expand Down Expand Up @@ -38,7 +38,7 @@ class="border border-neutral-800 p-2 rounded-md text-gray-500"

<!-- Mobile menu -->
<div x-show="open"
class="absolute bg-dark-300 md:hidden transform w-full z-20 top-0 left-0 mt-[60px] border-t border-neutral-800"
class="absolute bg-dark-300 md:hidden transform w-full top-0 left-0 mt-[60px] border-t border-neutral-800"
x-transition:enter="transition ease-out duration-500"
x-transition:enter-start="transform opacity-0 -translate-y-1/2"
x-transition:enter-end="transform opacity-100 translate-y-0"
Expand Down

0 comments on commit ed5963a

Please sign in to comment.