clampography 0.9.8 → 0.9.9
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/clampography.css +11 -2
- package/package.json +2 -2
package/clampography.css
CHANGED
|
@@ -361,10 +361,19 @@
|
|
|
361
361
|
|
|
362
362
|
dd {
|
|
363
363
|
margin-left: var(--spacing-md);
|
|
364
|
-
margin-bottom: var(--spacing-xs);
|
|
365
364
|
}
|
|
366
365
|
|
|
367
|
-
/*
|
|
366
|
+
/* Spacing between term and definition (consistent with lists) */
|
|
367
|
+
dt + dd {
|
|
368
|
+
margin-top: var(--spacing-xs);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
/* Spacing between multiple definitions (consistent with list items) */
|
|
372
|
+
dd + dd {
|
|
373
|
+
margin-top: var(--spacing-xs);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/* Remove bottom margin from last dd */
|
|
368
377
|
dd:last-child {
|
|
369
378
|
margin-bottom: 0;
|
|
370
379
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "clampography",
|
|
3
|
-
"version": "0.9.
|
|
4
|
-
"description": "Fluid typography system based on CSS clamp()
|
|
3
|
+
"version": "0.9.9",
|
|
4
|
+
"description": "Fluid typography system based on CSS clamp(). Alternative to Tailwind CSS Typography plugin.",
|
|
5
5
|
"main": "clampography.css",
|
|
6
6
|
"style": "clampography.css",
|
|
7
7
|
"files": [
|