@webmate-studio/builder 0.2.107 → 0.2.108
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 +5 -1
package/package.json
CHANGED
package/src/design-tokens.js
CHANGED
|
@@ -1490,10 +1490,14 @@ export function generateCSSFromTokens(tokens) {
|
|
|
1490
1490
|
lines.push(' margin-bottom: 1.5rem;');
|
|
1491
1491
|
lines.push('}');
|
|
1492
1492
|
lines.push('.prose table {');
|
|
1493
|
-
lines.push('
|
|
1493
|
+
lines.push(' display: block;');
|
|
1494
|
+
lines.push(' width: max-content;');
|
|
1494
1495
|
lines.push(' max-width: 100%;');
|
|
1496
|
+
lines.push(' overflow-x: auto;');
|
|
1495
1497
|
lines.push(' border-collapse: collapse;');
|
|
1496
1498
|
lines.push(' font-size: 0.875rem;');
|
|
1499
|
+
lines.push(' margin-top: 1.5rem;');
|
|
1500
|
+
lines.push(' margin-bottom: 1.5rem;');
|
|
1497
1501
|
lines.push('}');
|
|
1498
1502
|
lines.push('.prose thead {');
|
|
1499
1503
|
lines.push(' border-bottom: 2px solid var(--color-border, #e5e7eb);');
|