Created
April 5, 2024 07:32
-
-
Save yaikohi/e8af3dfc26a9947eb3539ce62eeaae5c to your computer and use it in GitHub Desktop.
typographic styles (from shadcn) for standard styling of text-focussed html elements in tailwind
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
@layer base { | |
* { | |
@apply border-border; | |
} | |
body { | |
@apply bg-background text-foreground; | |
font-feature-settings: | |
"rlig" 1, | |
"calt" 1; | |
} | |
h1 { | |
@apply text-4xl font-extrabold tracking-tight lg:text-5xl; | |
} | |
h2 { | |
@apply border-b pb-2 text-3xl font-semibold tracking-tight first:mt-0; | |
} | |
h3 { | |
@apply text-2xl font-semibold tracking-tight; | |
} | |
h4 { | |
@apply text-xl font-semibold tracking-tight; | |
} | |
p { | |
@apply leading-7; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment