Skip to content

Commit

Permalink
fix: added cursor-pointer to nav elements
Browse files Browse the repository at this point in the history
  • Loading branch information
coderwelsch committed Feb 1, 2024
1 parent 5c2f33d commit 0692bba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/navigation/navigation-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const NavigationGroupItem = ({
return (
<div
className={classNames(
"relative flex items-center gap-x-3 px-4 py-3 text-sm text-neutral-0 hover:bg-primary-900+10",
"relative flex cursor-pointer items-center gap-x-3 px-4 py-3 text-sm text-neutral-0 hover:bg-primary-900+10",
isActive && "bg-primary-900+20 font-semibold hover:bg-primary-900+20"
)}
{...props}
Expand Down
2 changes: 1 addition & 1 deletion src/components/navigation/navigation-popover-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const NavigationPopoverButton = ({
return (
<Popover.Button
ref={(el) => el && setReferenceElement(el)}
className="flex w-full items-center gap-x-3 px-4 py-3 text-left text-sm text-neutral-0 hover:bg-primary-900+10 ui-open:bg-primary-900+8 ui-open:font-semibold"
className="flex w-full cursor-pointer items-center gap-x-3 px-4 py-3 text-left text-sm text-neutral-0 hover:bg-primary-900+10 ui-open:bg-primary-900+8 ui-open:font-semibold"
onClick={onClick}
>
<>
Expand Down

0 comments on commit 0692bba

Please sign in to comment.