@webmate-studio/builder 0.2.107 → 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 +7 -1
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;
|
|
@@ -1490,10 +1491,14 @@ export function generateCSSFromTokens(tokens) {
|
|
|
1490
1491
|
lines.push(' margin-bottom: 1.5rem;');
|
|
1491
1492
|
lines.push('}');
|
|
1492
1493
|
lines.push('.prose table {');
|
|
1493
|
-
lines.push('
|
|
1494
|
+
lines.push(' display: block;');
|
|
1495
|
+
lines.push(' width: max-content;');
|
|
1494
1496
|
lines.push(' max-width: 100%;');
|
|
1497
|
+
lines.push(' overflow-x: auto;');
|
|
1495
1498
|
lines.push(' border-collapse: collapse;');
|
|
1496
1499
|
lines.push(' font-size: 0.875rem;');
|
|
1500
|
+
lines.push(' margin-top: 1.5rem;');
|
|
1501
|
+
lines.push(' margin-bottom: 1.5rem;');
|
|
1497
1502
|
lines.push('}');
|
|
1498
1503
|
lines.push('.prose thead {');
|
|
1499
1504
|
lines.push(' border-bottom: 2px solid var(--color-border, #e5e7eb);');
|
|
@@ -1596,6 +1601,7 @@ export function generateCSSFromTokens(tokens) {
|
|
|
1596
1601
|
lines.push(' display: inline-flex;');
|
|
1597
1602
|
lines.push(' align-items: center;');
|
|
1598
1603
|
lines.push(' justify-content: center;');
|
|
1604
|
+
lines.push(' text-align: center;');
|
|
1599
1605
|
lines.push(' font-weight: 500;');
|
|
1600
1606
|
lines.push(' border-style: solid;');
|
|
1601
1607
|
lines.push(' transition: all 0.15s ease-in-out;');
|