Skip to content

Instantly share code, notes, and snippets.

@yellow1912
Created March 25, 2022 08:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yellow1912/25fe86245063d8b1bcaa37180d472b4a to your computer and use it in GitHub Desktop.
Save yellow1912/25fe86245063d8b1bcaa37180d472b4a to your computer and use it in GitHub Desktop.
/**
* 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