@uiw/react-md-editor 3.9.4 → 3.9.5
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/dist/mdeditor.css +19 -0
- package/dist/mdeditor.js +232 -553
- package/dist/mdeditor.min.css +1 -1
- package/dist/mdeditor.min.js +1 -1
- package/package.json +2 -2
package/dist/mdeditor.css
CHANGED
|
@@ -190,6 +190,25 @@
|
|
|
190
190
|
list-style: disc outside none;
|
|
191
191
|
list-style: initial;
|
|
192
192
|
}
|
|
193
|
+
.wmde-markdown li {
|
|
194
|
+
display: list-item;
|
|
195
|
+
}
|
|
196
|
+
.wmde-markdown ul ul,
|
|
197
|
+
.wmde-markdown ul ol,
|
|
198
|
+
.wmde-markdown ol ol,
|
|
199
|
+
.wmde-markdown ol ul {
|
|
200
|
+
margin-top: 0;
|
|
201
|
+
margin-bottom: 0;
|
|
202
|
+
}
|
|
203
|
+
.wmde-markdown ul ul ul {
|
|
204
|
+
list-style-type: square;
|
|
205
|
+
}
|
|
206
|
+
.wmde-markdown ul ul {
|
|
207
|
+
list-style-type: circle;
|
|
208
|
+
}
|
|
209
|
+
.wmde-markdown ul {
|
|
210
|
+
list-style-type: disc;
|
|
211
|
+
}
|
|
193
212
|
.wmde-markdown > blockquote,
|
|
194
213
|
.wmde-markdown > blockquote blockquote {
|
|
195
214
|
margin: 0;
|