@posiwise/core-styles 0.0.20 → 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.20",
3
+ "version": "0.0.22",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -633,13 +633,52 @@
633
633
  }
634
634
  }
635
635
 
636
- .p-inputwrapper-focus {
637
- box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Replace with your color */
638
- }
639
-
640
-
641
636
  .p-dropdown:not(.p-disabled).p-focus {
642
637
  border-color: var(--tabs_bg) !important; /* Change to your custom color */
643
638
  box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
644
639
  outline: none !important; /* Keep the outline removed */
645
- }
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
+ }