[web] Update docs after verifying the behaviour

Indeed, it seems like the default is not a hand pointer, and MUI has customized
its button, so we need to replicate that behaviour if we directly use HTML
buttons.

Ref:
- https://ux.stackexchange.com/questions/3788/default-cursor-on-mouse-over-of-a-button-is-not-a-hand-pointer
This commit is contained in:
Manav Rathi
2024-09-30 20:54:22 +05:30
parent 3483ea0d1b
commit 8a5a923c93

View File

@@ -38,7 +38,7 @@ export const UnstyledButton = styled("button")`
inherit that customization also. */
letter-spacing: inherit;
/* The button default is to show an flipped arrow. Show a hand instead. */
/* Default cursor on mouse over of a button is not a hand pointer */
cursor: pointer;
`;