Fix: Change button cursor to pointer on hover

This commit is contained in:
Mujtaba 2024-10-14 15:48:31 +05:00
parent 0bea6c900c
commit 147862b39e
2 changed files with 3 additions and 3 deletions

View File

@ -146,7 +146,7 @@ export const Filters = () => {
]);
return (
<div className="text-textColor flex gap-[8px] items-center select-none">
<div onClick={previous}>
<div onClick={previous} className="cursor-pointer">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
@ -171,7 +171,7 @@ export const Filters = () => {
? `Week ${week.currentWeek}`
: `${dayjs().month(week.currentMonth).format('MMMM')}`}
</div>
<div onClick={next}>
<div onClick={next} className="cursor-pointer">
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"

View File

@ -15,7 +15,7 @@ const ModeComponent = () => {
}, [mode]);
return (
<div onClick={changeMode} className="select-none">
<div onClick={changeMode} className="select-none cursor-pointer">
{mode === 'dark' ? (
<svg
xmlns="http://www.w3.org/2000/svg"