Last active 6 days ago

admin revised this gist 6 days ago. Go to revision

1 file changed, 7 insertions, 1 deletion

css + tailwind 3 nuance.md

@@ -10,4 +10,10 @@
10 10
11 11 -> c wont be compiled
12 12
13 - -> update to `.jsoneditor c {}`
13 + -> update to `.jsoneditor c {}`
14 +
15 + verify using
16 +
17 + ```sh
18 + npx tailwindcss -i input.css -o output.css
19 + ```

admin revised this gist 6 days ago. Go to revision

1 file changed, 13 insertions

css + tailwind 3 nuance.md (file created)

@@ -0,0 +1,13 @@
1 + ```css
2 + @tailwind components;
3 +
4 + @layer components {
5 + .jsoneditor a {}
6 + .jsoneditor b {}
7 + c {}
8 + }
9 + ```
10 +
11 + -> c wont be compiled
12 +
13 + -> update to `.jsoneditor c {}`
Newer Older