Hi
Let’s see what I did:
I follow these steps:
-
writing
npm install tailwindcss
with the terminal part of my editor (VS Code) -
writing the code below into my
styles.css
file:
@/import "tailwindcss/base";
@/import "tailwindcss/components";
@/import "tailwindcss/utilities";
3. writing npx tailwindcss build styles.css -o output.css
with the terminal part of my editor (VS Code)
I can use Tailwind CSS classes, but when I want to customize nothing happens
for example, I wrote it and saved it, but there is no text-x
class
What should I do?