Skip to content

Commit

Permalink
feat: final navbar touches
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi committed Jun 1, 2024
1 parent 8a1c2e8 commit 4c0ac92
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/app/(marketing)/_components/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export const Navbar = () => {
<li>
<NavigationMenuLink asChild>
<a
className="flex size-full select-none flex-col justify-end rounded-md border border-gray-element-border bg-gray-element/50 px-6 py-3 no-underline outline-none backdrop-blur-lg transition-colors hover:bg-gray-element/75 focus:shadow-md"
className="flex size-full select-none flex-col justify-end rounded-md border border-gray-element-border bg-gray-element/50 px-6 py-3 pt-6 no-underline outline-none backdrop-blur-lg transition-colors hover:bg-gray-element/75 focus:shadow-md"
href="/"
>
<Image
Expand Down Expand Up @@ -158,7 +158,12 @@ export const Navbar = () => {
</button>
</div>
</div>
<div className={cn('h-0 overflow-hidden', menuOpen && 'h-full pt-6')}>
<div
className={cn(
'block h-0 overflow-hidden md:hidden',
menuOpen && 'h-full pt-6',
)}
>
<div className="container">
<ul className="flex flex-col gap-3">
<li>
Expand Down

0 comments on commit 4c0ac92

Please sign in to comment.