@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmate-studio/builder",
3
- "version": "0.2.104",
3
+ "version": "0.2.105",
4
4
  "type": "module",
5
5
  "description": "Webmate Studio Component Builder",
6
6
  "keywords": [
@@ -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 {');