This commit is contained in:
Jason Kulatunga
2020-08-19 16:04:21 -07:00
commit 8482272d45
336 changed files with 197309 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
/* ----------------------------------------------------------------------------------------------------- */
/* This injects Tailwind's component classes and any component classes registered by plugins.
/* ----------------------------------------------------------------------------------------------------- */
@tailwind components;
/* ----------------------------------------------------------------------------------------------------- */
/* Use custom @apply directives here to inline any existing utility classes into your own custom CSS.
/* ----------------------------------------------------------------------------------------------------- */
/**
* .btn {
* @apply font-bold py-2 px-4 rounded;
* }
*/
/* ----------------------------------------------------------------------------------------------------- */
/* This injects Tailwind's utility classes and any utility classes registered by plugins.
/* ----------------------------------------------------------------------------------------------------- */
@tailwind utilities;
/* ----------------------------------------------------------------------------------------------------- */
/* Use custom @variant directives here to build them.
/* ----------------------------------------------------------------------------------------------------- */
@variants dark-light {}
/* ----------------------------------------------------------------------------------------------------- */
/* 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 screens;