Last active
August 3, 2022 16:42
-
-
Save dektaiimage/13e44482be48029d5116eec44dd34688 to your computer and use it in GitHub Desktop.
Tailwindcss Directives
This file contains 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
@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