@webmate-studio/builder 0.2.96 → 0.2.97
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 +1 -1
- package/src/design-tokens.js +2 -2
package/package.json
CHANGED
package/src/design-tokens.js
CHANGED
|
@@ -7,7 +7,7 @@ function generateSemanticColorUtilities(tokens) {
|
|
|
7
7
|
if (!tokens.colors) return '';
|
|
8
8
|
|
|
9
9
|
let utilities = '\n/* Color Utilities */';
|
|
10
|
-
utilities += '\n@layer
|
|
10
|
+
utilities += '\n@layer utilities {';
|
|
11
11
|
|
|
12
12
|
// Map of all colors: token name -> utility class base name
|
|
13
13
|
const colorMap = {
|
|
@@ -175,7 +175,7 @@ function generateSemanticColorUtilities(tokens) {
|
|
|
175
175
|
}
|
|
176
176
|
}
|
|
177
177
|
|
|
178
|
-
utilities += '\n}'; // Close @layer
|
|
178
|
+
utilities += '\n}'; // Close @layer utilities
|
|
179
179
|
|
|
180
180
|
return utilities;
|
|
181
181
|
}
|