Created
April 25, 2025 10:37
-
-
Save tracepanic/7ce51e0b9357c74382eed4cdbdf71259 to your computer and use it in GitHub Desktop.
Button compatibility, tailwind v4 button uses default cursor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@layer base { | |
* { | |
@apply border-border outline-ring/50; | |
} | |
body { | |
@apply bg-background text-foreground; | |
} | |
button:not(:disabled), | |
[role="button"]:not(:disabled) { | |
cursor: pointer; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment