/* Injects Tailwind's base styles & any base styles registered by plugins. */ @tailwind base; @layer base { /* custom CSS goes here */ } /* Injects Tailwind's component classes & any component classes registered by plugins. */ @tailwind components; @layer components { /* custom CSS goes here */ } /* Injects Tailwind's utility classes & any utility classes registered by plugins. */ @tailwind utilities; @layer utilities { /* custom CSS goes here */ } /* Directive controlling where Tailwind injects responsive variations of utilities. By default Tailwind normally append these at the end of your stylesheet. */ @tailwind screens;