@apolitical/component-library 4.1.4-beta.1 → 4.1.4-beta.2
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/form/components/rich-text-editor/helpers/serialize/serialize.d.ts +1 -0
- package/index.js +33 -33
- package/index.mjs +1151 -1149
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/base/_blockquotes.scss +10 -0
|
@@ -44,6 +44,16 @@ $blockquote: (
|
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
+
// When there are multiple blockquotes in a row (e.g. in a rich text editor), remove the margin
|
|
48
|
+
// to make it seem like they're part of the same blockquote
|
|
49
|
+
&:has(+ blockquote) {
|
|
50
|
+
margin-bottom: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
& + blockquote {
|
|
54
|
+
margin-top: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
47
57
|
p,
|
|
48
58
|
span,
|
|
49
59
|
strong,
|