🩹(frontend) fix cursor on disabled button

Having a pointer cursor on a disabled button was misleading
fixed it ! Minor issue.
This commit is contained in:
lebaudantoine
2024-09-05 17:43:21 +02:00
committed by aleb_the_flash
parent 1b48fa256e
commit 66bc739411

View File

@@ -23,6 +23,9 @@ export const buttonRecipe = cva({
'&[data-selected]': {
backgroundColor: 'colorPalette.active',
},
'&[data-disabled]': {
cursor: 'auto',
},
},
variants: {
size: {