@onesaz/tailwind-config 0.3.0 → 0.3.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/dist/v4.css +6 -0
- package/package.json +1 -1
package/dist/v4.css
CHANGED
|
@@ -371,6 +371,12 @@
|
|
|
371
371
|
* IMPORTANT: Must be in @layer base for Tailwind v4 cascade to work!
|
|
372
372
|
* ======================================== */
|
|
373
373
|
@layer base {
|
|
374
|
+
/* Restore Tailwind v3 behaviour: default border-color to the theme token
|
|
375
|
+
instead of Tailwind v4's currentColor fallback */
|
|
376
|
+
*, ::before, ::after {
|
|
377
|
+
border-color: var(--border);
|
|
378
|
+
}
|
|
379
|
+
|
|
374
380
|
/* Apply theme colors to body by default */
|
|
375
381
|
body {
|
|
376
382
|
background-color: var(--background);
|
package/package.json
CHANGED