79128489

Date: 2024-10-26 12:12:17
Score: 0.5
Natty:
Report link

At the top of your CSS file, you need to import Tailwind's directives.

/* login.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* The rest of your CSS code */

Tailwind Docs (Step 4) says:

Add the Tailwind directives to your CSS

Add the @tailwind directives for each of Tailwind’s layers to your main CSS file.

Reasons:
  • Has code block (-0.5):
  • User mentioned (1): @tailwind
Posted by: JayDev95