@classic-homes/theme-tailwind-preset 0.1.48 → 0.1.50
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/index.js +3 -6
- package/package.json +2 -1
package/index.js
CHANGED
|
@@ -188,12 +188,9 @@ module.exports = {
|
|
|
188
188
|
|
|
189
189
|
fontWeight: tokens.fontWeight,
|
|
190
190
|
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
md: 'calc(var(--radius) - 2px)',
|
|
195
|
-
sm: 'calc(var(--radius) - 4px)',
|
|
196
|
-
},
|
|
191
|
+
// Border radius uses token values directly for consistency
|
|
192
|
+
// The --radius CSS variable (0.5rem) is available for components that need dynamic theming
|
|
193
|
+
borderRadius: tokens.borderRadius,
|
|
197
194
|
|
|
198
195
|
boxShadow: tokens.boxShadow,
|
|
199
196
|
|
package/package.json
CHANGED