css + tailwind 3 nuance.md
· 235 B · Markdown
Raw
```css
@tailwind components;
@layer components {
.jsoneditor a {}
.jsoneditor b {}
c {}
}
```
-> c wont be compiled
-> update to `.jsoneditor c {}`
verify using
```sh
npx tailwindcss -i input.css -o output.css
```
@tailwind components;
@layer components {
.jsoneditor a {}
.jsoneditor b {}
c {}
}
-> c wont be compiled
-> update to .jsoneditor c {}
verify using
npx tailwindcss -i input.css -o output.css