clampography 2.0.0-beta.6 → 2.0.0-beta.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/base.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clampography",
3
- "version": "2.0.0-beta.6",
3
+ "version": "2.0.0-beta.7",
4
4
  "description": "Fluid typography system based on CSS clamp() with optional themes and extra styles. A feature-rich alternative to Tailwind CSS Typography plugin.",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/base.js CHANGED
@@ -215,8 +215,8 @@ export default {
215
215
 
216
216
  // Blockquotes
217
217
  "blockquote": {
218
- "margin-top": "0",
219
- "margin-bottom": "0",
218
+ "margin-top": "var(--spacing-lg)",
219
+ "margin-bottom": "var(--spacing-lg)",
220
220
  "padding-left": "var(--spacing-md)",
221
221
  },
222
222