@schneiderelli/cms-runtime 0.1.3 → 0.1.4
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,12 +167,30 @@
|
|
|
167
167
|
margin: 1.5rem 0;
|
|
168
168
|
}
|
|
169
169
|
|
|
170
|
-
/*
|
|
170
|
+
/* Images - allow text wrapping */
|
|
171
171
|
.csm-markdown :global(img) {
|
|
172
172
|
max-width: 100%;
|
|
173
173
|
height: auto;
|
|
174
|
-
display:
|
|
175
|
-
|
|
176
|
-
|
|
174
|
+
display: block;
|
|
175
|
+
margin: 0.5rem 0;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
/* Float left - text wraps on right */
|
|
179
|
+
.csm-markdown :global(img[style*="float: left"]) {
|
|
180
|
+
float: left;
|
|
181
|
+
margin: 0.5rem 1rem 0.5rem 0;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
/* Float right - text wraps on left */
|
|
185
|
+
.csm-markdown :global(img[style*="float: right"]) {
|
|
186
|
+
float: right;
|
|
187
|
+
margin: 0.5rem 0 0.5rem 1rem;
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
/* Clear floats */
|
|
191
|
+
.csm-markdown :global(p)::after {
|
|
192
|
+
content: "";
|
|
193
|
+
display: table;
|
|
194
|
+
clear: both;
|
|
177
195
|
}
|
|
178
196
|
</style>
|
package/package.json
CHANGED