Skip to content

Commit

Permalink
add hover effects with cursor pointer (#1348)
Browse files Browse the repository at this point in the history
  • Loading branch information
AQIB-NAWAB authored Feb 1, 2025
1 parent 32a4525 commit b7028cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pages/tools/components/ui/Checkbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function Checkbox({
};

return (
<label className='flex items-center gap-3 px-4 py-2'>
<label className='flex items-center gap-3 px-4 py-2 cursor-pointer'>
<input
type='checkbox'
value={value}
Expand Down
2 changes: 1 addition & 1 deletion pages/tools/components/ui/DropdownMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default function DropdownMenu({
return (
<div className='my-2 bg-slate-200 dark:bg-slate-900 p-2 rounded'>
<div
className='w-full flex justify-between items-center align-middle'
className='w-full flex justify-between items-center align-middle cursor-pointer'
onClick={() => {
setIsDropdownOpen((prev) => !prev);
}}
Expand Down

0 comments on commit b7028cc

Please sign in to comment.