@pzh-ui/css 0.0.45 → 0.0.48
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/config/index.js +9 -6
- package/package.json +2 -2
- package/src/tailwind.css +339 -319
- package/src/tailwind.src.css +23 -9
- package/yarn-error.log +1061 -0
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';
|
|
@@ -266,6 +264,28 @@ h6,
|
|
|
266
264
|
font-size: 1rem;
|
|
267
265
|
}
|
|
268
266
|
|
|
267
|
+
.quill .ql-container .ql-editor p,
|
|
268
|
+
.quill .ql-container .ql-editor ul {
|
|
269
|
+
margin-bottom: 20px;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.quill .ql-container .ql-editor ul {
|
|
273
|
+
padding-left: 0;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.quill .ql-container .ql-editor strong {
|
|
277
|
+
font-family: 'Karbon Medium', sans-serif;
|
|
278
|
+
font-weight: 700;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.quill .ql-container .ql-editor ul li {
|
|
282
|
+
padding-left: 20px;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.quill .ql-container .ql-editor ul li.ql-indent-1 {
|
|
286
|
+
padding-left: 40px;
|
|
287
|
+
}
|
|
288
|
+
|
|
269
289
|
.quill .editor.ql-container.ql-snow .ql-editor h2 {
|
|
270
290
|
font-size: 1.125rem;
|
|
271
291
|
margin-top: 10px;
|
|
@@ -280,12 +300,6 @@ h6,
|
|
|
280
300
|
opacity: 0.55;
|
|
281
301
|
}
|
|
282
302
|
|
|
283
|
-
.pzh-box-shadow {
|
|
284
|
-
box-shadow: 0px 18px 60px rgba(0, 0, 0, 0.07),
|
|
285
|
-
0px 4.02054px 13.4018px rgba(0, 0, 0, 0.0417275),
|
|
286
|
-
0px 1.19702px 3.99006px rgba(0, 0, 0, 0.0282725);
|
|
287
|
-
}
|
|
288
|
-
|
|
289
303
|
.pzh-select-input input {
|
|
290
304
|
box-shadow: none !important;
|
|
291
|
-
}
|
|
305
|
+
}
|