@webmate-studio/builder 0.2.108 → 0.2.109
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 -0
package/package.json
CHANGED
package/src/design-tokens.js
CHANGED
|
@@ -995,6 +995,7 @@ body {
|
|
|
995
995
|
display: inline-flex;
|
|
996
996
|
align-items: center;
|
|
997
997
|
justify-content: center;
|
|
998
|
+
text-align: center;
|
|
998
999
|
font-weight: 500;
|
|
999
1000
|
border-width: 1px;
|
|
1000
1001
|
border-style: solid;
|
|
@@ -1600,6 +1601,7 @@ export function generateCSSFromTokens(tokens) {
|
|
|
1600
1601
|
lines.push(' display: inline-flex;');
|
|
1601
1602
|
lines.push(' align-items: center;');
|
|
1602
1603
|
lines.push(' justify-content: center;');
|
|
1604
|
+
lines.push(' text-align: center;');
|
|
1603
1605
|
lines.push(' font-weight: 500;');
|
|
1604
1606
|
lines.push(' border-style: solid;');
|
|
1605
1607
|
lines.push(' transition: all 0.15s ease-in-out;');
|