Created
March 25, 2022 08:26
-
-
Save yellow1912/25fe86245063d8b1bcaa37180d472b4a to your computer and use it in GitHub Desktop.
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
/** | |
* This injects Tailwind's base styles and any base styles registered by | |
* plugins. | |
*/ | |
@tailwind base; | |
/** | |
* This injects Tailwind's component classes and any component classes | |
* registered by plugins. | |
*/ | |
@tailwind components; | |
/** | |
* This injects Tailwind's utility classes and any utility classes registered | |
* by plugins. | |
*/ | |
@tailwind utilities; | |
/** | |
* Use this directive to control where Tailwind injects the responsive | |
* variations of each utility. | |
* | |
* If omitted, Tailwind will append these classes to the very end of | |
* your stylesheet by default. | |
*/ | |
@tailwind variants; | |
body{@apply text-right mt-auto w-1 min-w-full h-2 min-h-screen text-black font-font-1;}h1{@apply font-light text-[18px];}h2{@apply font-light;} | |
@screen xxl {body{@apply translate-x-2 translate-y-2 scale-x-100 scale-y-100 uppercase text-right tracking-tighter leading-tight;}} | |
@screen xxxl {body{@apply min-w-full min-h-full text-test-color-z;}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment