@carbonid1/design-system 5.2.0 → 5.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/themes/dashboard.css +4 -2
- package/themes/reader.css +4 -2
package/package.json
CHANGED
package/themes/dashboard.css
CHANGED
|
@@ -18,8 +18,10 @@
|
|
|
18
18
|
@import 'tailwindcss';
|
|
19
19
|
|
|
20
20
|
/* Scan design-system components so consumers pick up classes used inside
|
|
21
|
-
* Button/Kbd/etc. — Tailwind v4 skips node_modules by default.
|
|
22
|
-
|
|
21
|
+
* Button/Kbd/etc. — Tailwind v4 skips node_modules by default. Point at the
|
|
22
|
+
* shipped `dist/` (the only source that lands in installed `node_modules`),
|
|
23
|
+
* not `src/` which isn't in the published `files`. */
|
|
24
|
+
@source "../dist/**/*.js";
|
|
23
25
|
|
|
24
26
|
@custom-variant dark (&:is(.dark *));
|
|
25
27
|
|
package/themes/reader.css
CHANGED
|
@@ -40,8 +40,10 @@
|
|
|
40
40
|
@import 'tailwindcss';
|
|
41
41
|
|
|
42
42
|
/* Scan design-system components so consumers pick up classes used inside
|
|
43
|
-
* Button/Kbd/etc. — Tailwind v4 skips node_modules by default.
|
|
44
|
-
|
|
43
|
+
* Button/Kbd/etc. — Tailwind v4 skips node_modules by default. Point at the
|
|
44
|
+
* shipped `dist/` (the only source that lands in installed `node_modules`),
|
|
45
|
+
* not `src/` which isn't in the published `files`. */
|
|
46
|
+
@source "../dist/**/*.js";
|
|
45
47
|
|
|
46
48
|
@custom-variant dark (&:is(.dark *));
|
|
47
49
|
|