@pzh-ui/css 0.0.46 → 0.0.49
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/package.json +2 -2
- package/src/tailwind.css +358 -313
- package/src/tailwind.src.css +25 -3
package/src/tailwind.src.css
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
@import '~react-datepicker/dist/react-datepicker.css';
|
|
2
|
-
|
|
3
1
|
@import 'tailwindcss/base';
|
|
4
2
|
@import 'tailwindcss/components';
|
|
5
3
|
@import 'tailwindcss/utilities';
|
|
@@ -40,7 +38,9 @@ h3,
|
|
|
40
38
|
h4,
|
|
41
39
|
h5,
|
|
42
40
|
h6,
|
|
43
|
-
.font-bold
|
|
41
|
+
.font-bold,
|
|
42
|
+
strong,
|
|
43
|
+
b {
|
|
44
44
|
font-family: 'Karbon Medium', sans-serif;
|
|
45
45
|
font-weight: 700;
|
|
46
46
|
}
|
|
@@ -266,6 +266,28 @@ h6,
|
|
|
266
266
|
font-size: 1rem;
|
|
267
267
|
}
|
|
268
268
|
|
|
269
|
+
.quill .ql-container .ql-editor p,
|
|
270
|
+
.quill .ql-container .ql-editor ul {
|
|
271
|
+
margin-bottom: 20px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.quill .ql-container .ql-editor ul {
|
|
275
|
+
padding-left: 0;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
.quill .ql-container .ql-editor strong {
|
|
279
|
+
font-family: 'Karbon Medium', sans-serif;
|
|
280
|
+
font-weight: 700;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.quill .ql-container .ql-editor ul li {
|
|
284
|
+
padding-left: 20px;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.quill .ql-container .ql-editor ul li.ql-indent-1 {
|
|
288
|
+
padding-left: 40px;
|
|
289
|
+
}
|
|
290
|
+
|
|
269
291
|
.quill .editor.ql-container.ql-snow .ql-editor h2 {
|
|
270
292
|
font-size: 1.125rem;
|
|
271
293
|
margin-top: 10px;
|