Skip to content

Instantly share code, notes, and snippets.

@tracepanic
Created April 25, 2025 10:37
Show Gist options
  • Save tracepanic/7ce51e0b9357c74382eed4cdbdf71259 to your computer and use it in GitHub Desktop.
Save tracepanic/7ce51e0b9357c74382eed4cdbdf71259 to your computer and use it in GitHub Desktop.
Button compatibility, tailwind v4 button uses default cursor
@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