@posiwise/core-styles 0.0.21 → 0.0.22

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posiwise/core-styles",
3
- "version": "0.0.21",
3
+ "version": "0.0.22",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -638,3 +638,47 @@
638
638
  box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
639
639
  outline: none !important; /* Keep the outline removed */
640
640
  }
641
+ .ql-editor li {
642
+ font-size: 15px;
643
+ }
644
+ .ql-editor ol {
645
+ padding-left: 0.75em !important;
646
+ }
647
+
648
+ .quill-container {
649
+ max-width: 1000px;
650
+ width: 100%;
651
+ }
652
+
653
+ .content-quill-wrapper {
654
+ margin: 0 auto;
655
+ max-width: 1000px;
656
+ background: rgb(249, 249, 249);
657
+ border: 1px solid rgb(238, 238, 238);
658
+
659
+ .content-quill-box {
660
+ padding: 3.5rem 3rem 3rem;
661
+ }
662
+ }
663
+
664
+ @media only screen and (max-width: 1024px) {
665
+ .content-quill-wrapper {
666
+ padding: 1rem;
667
+ background: rgb(249, 249, 249);
668
+
669
+ .content-quill-box {
670
+ padding: 1rem;
671
+ }
672
+ }
673
+ }
674
+
675
+ @media only screen and (max-width: 767px) {
676
+ .content-quill-wrapper {
677
+ padding: 0.5rem;
678
+ background: rgb(249, 249, 249);
679
+
680
+ .content-quill-box {
681
+ padding: 0.5rem;
682
+ }
683
+ }
684
+ }