@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
- /* Image styling - inline, text only AFTER image */
170
+ /* Images - allow text wrapping */
171
171
  .csm-markdown :global(img) {
172
172
  max-width: 100%;
173
173
  height: auto;
174
- display: inline-block;
175
- vertical-align: baseline;
176
- margin: 0 0.25rem;
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schneiderelli/cms-runtime",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Content System Manager Runtime - Shared types and components for CMS editor and website framework",
5
5
  "scripts": {
6
6
  "dev": "vite dev",