@schneiderelli/cms-runtime 0.1.2 → 0.1.3
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.
|
@@ -167,29 +167,12 @@
|
|
|
167
167
|
margin: 1.5rem 0;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
/* Image styling */
|
|
170
|
+
/* Image styling - inline, text only AFTER image */
|
|
171
171
|
.csm-markdown :global(img) {
|
|
172
172
|
max-width: 100%;
|
|
173
173
|
height: auto;
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
float: left;
|
|
178
|
-
margin: 0 1rem 1rem 0;
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
.csm-markdown :global(img[style*="float: right"]) {
|
|
182
|
-
float: right;
|
|
183
|
-
margin: 0 0 1rem 1rem;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.csm-markdown :global(img[style*="display: block"]) {
|
|
187
|
-
display: block;
|
|
188
|
-
margin: 1rem auto;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
/* Clear floats after images */
|
|
192
|
-
.csm-markdown :global(p:has(img[style*="float"])) {
|
|
193
|
-
overflow: auto;
|
|
174
|
+
display: inline-block;
|
|
175
|
+
vertical-align: baseline;
|
|
176
|
+
margin: 0 0.25rem;
|
|
194
177
|
}
|
|
195
178
|
</style>
|
package/package.json
CHANGED