@posiwise/core-styles 0.0.26 → 0.0.28
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 +1 -1
- package/scss/_dynamic-styles.scss +34 -3
package/package.json
CHANGED
|
@@ -692,7 +692,7 @@
|
|
|
692
692
|
.content-quill-wrapper {
|
|
693
693
|
margin: 0 auto;
|
|
694
694
|
max-width: 1000px;
|
|
695
|
-
background:
|
|
695
|
+
background: map-get($white-color, base);
|
|
696
696
|
border: 1px solid rgb(238, 238, 238);
|
|
697
697
|
|
|
698
698
|
.content-quill-box {
|
|
@@ -703,7 +703,7 @@
|
|
|
703
703
|
@media only screen and (max-width: 1024px) {
|
|
704
704
|
.content-quill-wrapper {
|
|
705
705
|
padding: 1rem;
|
|
706
|
-
background:
|
|
706
|
+
background: map-get($white-color, base);
|
|
707
707
|
|
|
708
708
|
.content-quill-box {
|
|
709
709
|
padding: 1rem;
|
|
@@ -714,7 +714,7 @@
|
|
|
714
714
|
@media only screen and (max-width: 767px) {
|
|
715
715
|
.content-quill-wrapper {
|
|
716
716
|
padding: 0.5rem;
|
|
717
|
-
background:
|
|
717
|
+
background: map-get($white-color, base);
|
|
718
718
|
|
|
719
719
|
.content-quill-box {
|
|
720
720
|
padding: 0.5rem;
|
|
@@ -798,3 +798,34 @@
|
|
|
798
798
|
.md-drppicker td.active:hover {
|
|
799
799
|
background-color: var(--tabs_bg) !important;
|
|
800
800
|
}
|
|
801
|
+
|
|
802
|
+
.sign-header-btn {
|
|
803
|
+
&:hover {
|
|
804
|
+
border: 1px solid;
|
|
805
|
+
box-shadow: none !important;
|
|
806
|
+
border-color: var(--first) !important;
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
|
|
810
|
+
.product-header-color {
|
|
811
|
+
color: rgb(24, 37, 39) !important;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
@media (min-width: 991px) {
|
|
815
|
+
.section-outer {
|
|
816
|
+
padding-top: 60px !important;
|
|
817
|
+
padding-bottom: 60px !important;
|
|
818
|
+
}
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.view-all {
|
|
822
|
+
font-size: 1.5rem;
|
|
823
|
+
font-weight: 600;
|
|
824
|
+
color: black !important;
|
|
825
|
+
text-decoration: none;
|
|
826
|
+
margin-bottom: 2.5rem;
|
|
827
|
+
|
|
828
|
+
&:hover {
|
|
829
|
+
color: var(--first) !important;
|
|
830
|
+
}
|
|
831
|
+
}
|