Merge pull request #311 from Mujtaba500/bugfix/button-hover-cursor

fix:Change button cursor to pointer on hover
This commit is contained in:
James Read 2024-10-04 21:30:45 +01:00 committed by GitHub
commit d790d5f99e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -188,7 +188,7 @@ export const Filters = () => {
<div className="flex-1">{betweenDates}</div>
<div
className={clsx(
'border border-tableBorder p-[10px]',
'border border-tableBorder p-[10px] cursor-pointer',
week.display === 'day' && 'bg-tableBorder'
)}
onClick={setDay}
@ -197,7 +197,7 @@ export const Filters = () => {
</div>
<div
className={clsx(
'border border-tableBorder p-[10px]',
'border border-tableBorder p-[10px] cursor-pointer',
week.display === 'week' && 'bg-tableBorder'
)}
onClick={setWeek}
@ -206,7 +206,7 @@ export const Filters = () => {
</div>
<div
className={clsx(
'border border-tableBorder p-[10px]',
'border border-tableBorder p-[10px] cursor-pointer',
week.display === 'month' && 'bg-tableBorder'
)}
onClick={setMonth}