Skip to content

Commit

Permalink
fix pointer events & logo sizing on mobile navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
shrey150 committed Dec 24, 2024
1 parent e682ce2 commit 9d70b37
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/NavBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,14 @@ export default function NavbarBuilder() {
<div className="flex-1 flex items-center justify-center sm:items-stretch sm:justify-start">
<InternalLink
href="/"
className="flex-shrink-0 w-5 hover:cursor-pointer hover:opacity-75"
className="flex logo-container items-center flex-shrink-0 hover:cursor-pointer hover:opacity-75"
style={{ pointerEvents: "none" }}
>
<img
src="/v1logowhite.svg"
alt="V1 logo"
className="h-full"
className="h-8"
style={{ pointerEvents: "auto" }}
/>
</InternalLink>
<div className="hidden sm:block sm:ml-6 w-full">
Expand Down

0 comments on commit 9d70b37

Please sign in to comment.