Merge pull request #311 from Mujtaba500/bugfix/button-hover-cursor
fix:Change button cursor to pointer on hover
This commit is contained in:
commit
d790d5f99e
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in New Issue