Skip to content

Instantly share code, notes, and snippets.

@dektaiimage
Last active August 3, 2022 02:04
Show Gist options
  • Save dektaiimage/fecf33a5760bd196d0fa80ea1e9861fd to your computer and use it in GitHub Desktop.
Save dektaiimage/fecf33a5760bd196d0fa80ea1e9861fd to your computer and use it in GitHub Desktop.
Example Tailwind Buttons @apply
@tailwind base;
@tailwind components;
@tailwind utilities;
.btn {
@apply px-3 py-2 rounded-lg;
}
.btn:not([class*="btn--"]) {
@apply bg-gray-200 text-gray-600;
}
.btn--primary {
@apply bg-blue-500 text-blue-100;
}
.btn--success {
@apply bg-green-500 text-green-100;
}
.btn--danger {
@apply bg-red-500 text-red-100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment