Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arlagonix committed Aug 23, 2024
1 parent 6b2970b commit 6bf97f2
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/components/Menu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,12 +137,8 @@ const Menu = () => {
</strong>
</p>
</div>
<div className="fixed top-0 z-20 flex w-[min(100vw,768px)] items-center border-b border-neutral-300 bg-white pr-4 desktop:hidden">
<ToggleMenu isOpen={showMobileMenu} clickHandler={toggleMenu} />
<Link
href="/"
className="center absolute left-1/2 top-1/2 -translate-x-1/2 -translate-y-1/2 transform"
>
<div className="fixed top-0 z-20 flex w-[min(100vw,768px)] items-center justify-between border-b border-neutral-300 bg-white pl-4 desktop:hidden">
<Link href="/" className="">
<Image
src="/dance_logo.png"
width={63}
Expand All @@ -151,6 +147,7 @@ const Menu = () => {
draggable={false}
/>
</Link>
<ToggleMenu isOpen={showMobileMenu} clickHandler={toggleMenu} />
</div>
<div
className={cn(
Expand Down

0 comments on commit 6bf97f2

Please sign in to comment.