@trackunit/css-tailwind 0.0.115 → 0.0.116
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
CHANGED
|
@@ -16,15 +16,18 @@
|
|
|
16
16
|
--z-popover: 21;
|
|
17
17
|
--z-toast: 100;
|
|
18
18
|
--spacing-responsive-space: var(--spacing-3);
|
|
19
|
+
--spacing-responsive-space-lg: var(--spacing-5);
|
|
19
20
|
}
|
|
20
21
|
@media (min-width: 768px) {
|
|
21
22
|
:root {
|
|
22
23
|
--spacing-responsive-space: var(--spacing-4);
|
|
24
|
+
--spacing-responsive-space-lg: var(--spacing-6);
|
|
23
25
|
}
|
|
24
26
|
}
|
|
25
27
|
@media (min-width: 1024px) {
|
|
26
28
|
:root {
|
|
27
29
|
--spacing-responsive-space: var(--spacing-5);
|
|
30
|
+
--spacing-responsive-space-lg: var(--spacing-7);
|
|
28
31
|
}
|
|
29
32
|
}
|
|
30
33
|
|
|
@@ -1299,6 +1299,7 @@ var tailwindBaseConfig = {
|
|
|
1299
1299
|
spacing: {
|
|
1300
1300
|
...designTokensToTailwindConfig("spacing", themeSpacing),
|
|
1301
1301
|
"responsive-space": withCustomPropertyValueAsComment("--spacing-responsive-space"),
|
|
1302
|
+
"responsive-space-lg": withCustomPropertyValueAsComment("--spacing-responsive-space-lg"),
|
|
1302
1303
|
"table-spacing": withCustomPropertyValueAsComment("--table-spacing"),
|
|
1303
1304
|
},
|
|
1304
1305
|
borderRadius: designTokensToTailwindConfig("border-radius", themeBorderRadius),
|