Created
October 25, 2023 16:58
-
-
Save JamDev0/1cb403773f002a0f1d497a6a9341fb8e to your computer and use it in GitHub Desktop.
Globals.css example
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
| @tailwind base; | |
| @tailwind components; | |
| @tailwind utilities; | |
| @layer utilities { | |
| .heading-1{ | |
| @apply font-inter font-semibold text-[2rem]; | |
| } | |
| .heading-2{ | |
| @apply font-inter font-semibold text-[1.75rem]; | |
| } | |
| .heading-3{ | |
| @apply font-inter font-semibold text-2xl; | |
| } | |
| .heading-4{ | |
| @apply font-inter font-semibold text-xl; | |
| } | |
| .heading-5{ | |
| @apply font-inter font-semibold text-base; | |
| } | |
| } | |
| body { | |
| ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment