Skip to content

Commit

Permalink
Merge pull request #78 from TurunWappuradio/fix/showlist-cursor-pointer
Browse files Browse the repository at this point in the history
Fix: Add cursor: pointer to showlist buttons.
  • Loading branch information
kovipu authored Apr 15, 2024
2 parents 5c8b71f + 3b7ec7f commit 58c04fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/responsiveShowlist.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const NavButton = ({ value, onClick, text, alternate = false }: NavButton) => {
return (
<>
<a
className={`${'flex py-8 font-bold text-teal transition hover:text-coral'}
className={`${'flex cursor-pointer py-8 font-bold text-teal transition hover:text-coral'}
${disabled ? 'hidden' : ''}
${alternate ? '' : ''}
`}
Expand Down

0 comments on commit 58c04fb

Please sign in to comment.