@exem-ui/tailwindcss4 0.3.2-next.20260608091439 → 0.3.2-next.20260609002221
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/dist/theme.css +13 -3
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -379,11 +379,21 @@
|
|
|
379
379
|
--text-body-2: 14px;
|
|
380
380
|
--text-body-3: 12px;
|
|
381
381
|
--text-caption: 11px;
|
|
382
|
-
--text-code:
|
|
382
|
+
--text-code-1: 16px;
|
|
383
|
+
--text-code-2: 14px;
|
|
384
|
+
--text-code-3: 12px;
|
|
383
385
|
}
|
|
384
386
|
|
|
385
|
-
@utility text-code {
|
|
386
|
-
font-size: var(--text-code);
|
|
387
|
+
@utility text-code-1 {
|
|
388
|
+
font-size: var(--text-code-1);
|
|
389
|
+
font-family: 'JetBrains Mono', monospace;
|
|
390
|
+
}
|
|
391
|
+
@utility text-code-2 {
|
|
392
|
+
font-size: var(--text-code-2);
|
|
393
|
+
font-family: 'JetBrains Mono', monospace;
|
|
394
|
+
}
|
|
395
|
+
@utility text-code-3 {
|
|
396
|
+
font-size: var(--text-code-3);
|
|
387
397
|
font-family: 'JetBrains Mono', monospace;
|
|
388
398
|
}
|
|
389
399
|
|
package/package.json
CHANGED