@sc-360-v2/storefront-cms-library 0.3.82 → 0.3.83
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/dist/allocations.scss +1 -1
- package/dist/builder.js +1 -1
- package/dist/bundle.scss +20 -3
- package/dist/cart-products-sidebar.scss +2 -1
- package/dist/cartDropdownOverlay.scss +5 -1
- package/dist/coupon.scss +238 -21
- package/dist/currency.scss +31 -0
- package/dist/dropdownTemplate.scss +24 -2
- package/dist/modal.scss +64 -3
- package/dist/repeater.scss +26 -0
- package/dist/request-for-quotes.scss +230 -0
- package/dist/skeleton.scss +32 -0
- package/dist/types/builder/tools/element-edit/coupon.d.ts +247 -4248
- package/dist/uom-selector.scss +8 -3
- package/package.json +1 -1
package/dist/uom-selector.scss
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
.uom__selector {
|
|
72
72
|
padding: 10px;
|
|
73
73
|
width: 100%;
|
|
74
|
-
height: var(--_ctm-mob-lt-ht, var(--_ctm-tab-lt-ht, var(--_ctm-lt-ht)));
|
|
74
|
+
// height: var(--_ctm-mob-lt-ht, var(--_ctm-tab-lt-ht, var(--_ctm-lt-ht)));
|
|
75
75
|
.uom__container {
|
|
76
76
|
padding: var(--_ctm-mob-lt-pg, var(--_ctm-tab-lt-pg, var(--_ctm-lt-pg)));
|
|
77
77
|
height: 100%;
|
|
@@ -127,7 +127,9 @@
|
|
|
127
127
|
align-items: center;
|
|
128
128
|
justify-content: center;
|
|
129
129
|
flex-direction: column;
|
|
130
|
+
white-space: nowrap;
|
|
130
131
|
gap: 4px;
|
|
132
|
+
flex-shrink: 0;
|
|
131
133
|
padding: var(
|
|
132
134
|
--_ctm-mob-dn-im-se-dt-se-vl-pg,
|
|
133
135
|
var(--_ctm-tab-dn-im-se-dt-se-vl-pg, var(--_ctm-dn-im-se-dt-se-vl-pg))
|
|
@@ -678,11 +680,14 @@
|
|
|
678
680
|
gap: var(--_ctm-mob-lt-im-sg, var(--_ctm-tab-lt-im-sg, var(--_ctm-lt-im-sg)));
|
|
679
681
|
&:not([data-overflow-items="Wrap"]) {
|
|
680
682
|
flex-wrap: nowrap;
|
|
681
|
-
overflow-x: auto;
|
|
683
|
+
// overflow-x: auto;
|
|
682
684
|
.item {
|
|
683
685
|
min-width: 120px;
|
|
684
686
|
}
|
|
685
687
|
}
|
|
688
|
+
&[data-overflow-items="None"] {
|
|
689
|
+
overflow: hidden;
|
|
690
|
+
}
|
|
686
691
|
}
|
|
687
692
|
|
|
688
693
|
.vertical {
|
|
@@ -690,7 +695,7 @@
|
|
|
690
695
|
flex-direction: column;
|
|
691
696
|
overflow-y: auto;
|
|
692
697
|
// flex-wrap: wrap;
|
|
693
|
-
gap: var(--_ctm-lt-im-sg);
|
|
698
|
+
row-gap: var(--_ctm-lt-im-sg);
|
|
694
699
|
.item {
|
|
695
700
|
flex-direction: row;
|
|
696
701
|
justify-content: space-between;
|