Skip to content

Instantly share code, notes, and snippets.

@dektaiimage
Last active August 3, 2022 16:42
Show Gist options
  • Save dektaiimage/13e44482be48029d5116eec44dd34688 to your computer and use it in GitHub Desktop.
Save dektaiimage/13e44482be48029d5116eec44dd34688 to your computer and use it in GitHub Desktop.
Tailwindcss Directives
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1 {
@apply text-2xl;
}
h2 {
@apply text-xl;
}
}
@layer components {
.btn {
@apply px-3 py-2 rounded-lg;
}
}
@layer utilities {
.text-xs {
font-size: 0.5rem;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment