fix: add cursor pointer style to non disabled buttons

This commit is contained in:
HorizonCode 2025-07-07 18:34:26 +02:00
parent 2162ba15fe
commit 3b3447c42c

View File

@ -154,4 +154,8 @@
body {
@apply bg-background text-foreground;
}
button:not([disabled]),
[role="button"]:not([disabled]) {
cursor: pointer;
}
}