@webmate-studio/builder 0.2.104 → 0.2.105
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 +3 -1
package/package.json
CHANGED
package/src/design-tokens.js
CHANGED
|
@@ -1433,9 +1433,11 @@ export function generateCSSFromTokens(tokens) {
|
|
|
1433
1433
|
|
|
1434
1434
|
// Paragraphs
|
|
1435
1435
|
lines.push('.prose p {');
|
|
1436
|
-
lines.push(' margin-top: 1rem;');
|
|
1437
1436
|
lines.push(' margin-bottom: 1rem;');
|
|
1438
1437
|
lines.push('}');
|
|
1438
|
+
lines.push('.prose p + p {');
|
|
1439
|
+
lines.push(' margin-top: 1rem;');
|
|
1440
|
+
lines.push('}');
|
|
1439
1441
|
|
|
1440
1442
|
// Lists
|
|
1441
1443
|
lines.push('.prose ul, .prose ol {');
|