Skip to content

Commit b7028cc

Browse files
authored
add hover effects with cursor pointer (#1348)
1 parent 32a4525 commit b7028cc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pages/tools/components/ui/Checkbox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function Checkbox({
2222
};
2323

2424
return (
25-
<label className='flex items-center gap-3 px-4 py-2'>
25+
<label className='flex items-center gap-3 px-4 py-2 cursor-pointer'>
2626
<input
2727
type='checkbox'
2828
value={value}

pages/tools/components/ui/DropdownMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export default function DropdownMenu({
2828
return (
2929
<div className='my-2 bg-slate-200 dark:bg-slate-900 p-2 rounded'>
3030
<div
31-
className='w-full flex justify-between items-center align-middle'
31+
className='w-full flex justify-between items-center align-middle cursor-pointer'
3232
onClick={() => {
3333
setIsDropdownOpen((prev) => !prev);
3434
}}

0 commit comments

Comments
 (0)