Created
November 19, 2023 10:20
-
-
Save umkl/fda4d37786454c7486b650d42cbd8fdc to your computer and use it in GitHub Desktop.
add text outline to 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
@tailwind base; | |
@tailwind components; | |
@tailwind utilities; | |
@layer base { | |
.font-outline-1 { | |
-webkit-text-stroke: 1px white; | |
} | |
.font-outline-2 { | |
-webkit-text-stroke: 2px white; | |
} | |
.font-outline-3 { | |
-webkit-text-stroke: 2px white; | |
} | |
.font-outline-4 { | |
-webkit-text-stroke: 4px white; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment