shru-design-system 0.0.6 → 0.0.7
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/apps/design-system/styles/globals.css +22 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +4 -3
- package/scripts/build-css.js +231 -0
|
@@ -243,11 +243,30 @@
|
|
|
243
243
|
}
|
|
244
244
|
|
|
245
245
|
/*
|
|
246
|
-
*
|
|
247
|
-
*
|
|
248
|
-
*
|
|
246
|
+
* Override broken Tailwind v4 generated utilities
|
|
247
|
+
* Tailwind v4 has bugs with some utility generation (e.g., rounded-full generates infinity)
|
|
248
|
+
* We explicitly define these to ensure they work correctly
|
|
249
249
|
*/
|
|
250
250
|
|
|
251
|
+
/*
|
|
252
|
+
* Pre-generated utility classes for design system components
|
|
253
|
+
* These utilities are explicitly defined to ensure they work in consuming apps
|
|
254
|
+
* without requiring Tailwind configuration or scanning
|
|
255
|
+
*
|
|
256
|
+
* Generated from 98 component files
|
|
257
|
+
* Total classes: 423
|
|
258
|
+
*/
|
|
259
|
+
|
|
260
|
+
@layer utilities {
|
|
261
|
+
.rounded-2xl { border-radius: calc(var(--radius) + 8px) !important; }
|
|
262
|
+
.rounded-full { border-radius: 9999px !important; }
|
|
263
|
+
.rounded-lg { border-radius: var(--radius-lg) !important; }
|
|
264
|
+
.rounded-md { border-radius: var(--radius-md) !important; }
|
|
265
|
+
.rounded-none { border-radius: 0 !important; }
|
|
266
|
+
.rounded-sm { border-radius: var(--radius-sm) !important; }
|
|
267
|
+
.rounded-xl { border-radius: var(--radius-xl) !important; }
|
|
268
|
+
}
|
|
269
|
+
|
|
251
270
|
@layer components {
|
|
252
271
|
.steps {
|
|
253
272
|
&:first-child {
|