Skip to content

Commit

Permalink
feat/hover-effects-filter-1216
Browse files Browse the repository at this point in the history
  • Loading branch information
Shayan12456 committed Jan 5, 2025
1 parent 5114356 commit fd367df
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
@@ -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}
2 changes: 1 addition & 1 deletion pages/tools/components/ui/DropdownMenu.tsx
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ export default function DropdownMenu({
}, [router]);

return (
<div className='my-2 bg-slate-200 dark:bg-slate-900 p-2 rounded'>
<div className='my-2 bg-slate-200 dark:bg-slate-900 p-2 rounded cursor-pointer'>
<div
className='w-full flex justify-between items-center align-middle'
onClick={() => {

0 comments on commit fd367df

Please sign in to comment.