@posiwise/core-styles 0.0.21 → 0.0.23

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.23",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
@@ -633,8 +633,63 @@
633
633
  }
634
634
  }
635
635
 
636
+ .p-multiselect-filter {
637
+ border-color: var(--tabs_bg) !important; /* Change to your custom color */
638
+ box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
639
+ outline: none !important; /* Keep the outline removed */
640
+ }
641
+
642
+ .p-multiselect:not(.p-disabled).p-focus {
643
+ border-color: var(--tabs_bg) !important;
644
+ box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important;
645
+ outline: none !important;
646
+ }
636
647
  .p-dropdown:not(.p-disabled).p-focus {
637
648
  border-color: var(--tabs_bg) !important; /* Change to your custom color */
638
649
  box-shadow: 0 0 0 0.1rem var(--tabs_bg) !important; /* Adjust as needed */
639
650
  outline: none !important; /* Keep the outline removed */
640
651
  }
652
+ .ql-editor li {
653
+ font-size: 15px;
654
+ }
655
+ .ql-editor ol {
656
+ padding-left: 0.75em !important;
657
+ }
658
+
659
+ .quill-container {
660
+ max-width: 1000px;
661
+ width: 100%;
662
+ }
663
+
664
+ .content-quill-wrapper {
665
+ margin: 0 auto;
666
+ max-width: 1000px;
667
+ background: rgb(249, 249, 249);
668
+ border: 1px solid rgb(238, 238, 238);
669
+
670
+ .content-quill-box {
671
+ padding: 3.5rem 3rem 3rem;
672
+ }
673
+ }
674
+
675
+ @media only screen and (max-width: 1024px) {
676
+ .content-quill-wrapper {
677
+ padding: 1rem;
678
+ background: rgb(249, 249, 249);
679
+
680
+ .content-quill-box {
681
+ padding: 1rem;
682
+ }
683
+ }
684
+ }
685
+
686
+ @media only screen and (max-width: 767px) {
687
+ .content-quill-wrapper {
688
+ padding: 0.5rem;
689
+ background: rgb(249, 249, 249);
690
+
691
+ .content-quill-box {
692
+ padding: 0.5rem;
693
+ }
694
+ }
695
+ }