@sc-360-v2/storefront-cms-library 0.3.80 → 0.3.82
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/builder.js +1 -1
- package/dist/cartDropdownOverlay.scss +3 -2
- package/dist/checkbox-radio.scss +8 -8
- package/dist/checkout.scss +800 -788
- package/dist/review-cart.scss +5 -2
- package/dist/table.scss +2 -1
- package/dist/types/builder/tools/element-edit/contactUs.d.ts +1 -1
- package/dist/types/builder/tools/element-edit/table.d.ts +1 -0
- package/package.json +1 -1
package/dist/review-cart.scss
CHANGED
|
@@ -28,6 +28,8 @@
|
|
|
28
28
|
font-size: 14px;
|
|
29
29
|
font-weight: 400;
|
|
30
30
|
color: var(--_gray-600);
|
|
31
|
+
display: flex;
|
|
32
|
+
align-items: center;
|
|
31
33
|
span {
|
|
32
34
|
vertical-align: middle;
|
|
33
35
|
margin-right: 6px;
|
|
@@ -107,6 +109,7 @@
|
|
|
107
109
|
}
|
|
108
110
|
|
|
109
111
|
.cart-items {
|
|
112
|
+
padding-top: 24px;
|
|
110
113
|
h6 {
|
|
111
114
|
font-size: 14px;
|
|
112
115
|
font-weight: 600;
|
|
@@ -118,8 +121,8 @@
|
|
|
118
121
|
.cart_item-grid {
|
|
119
122
|
display: grid;
|
|
120
123
|
grid-template-columns: repeat(2, 1fr);
|
|
121
|
-
gap: 24px
|
|
122
|
-
padding-right: 12px;
|
|
124
|
+
gap: 24px;
|
|
125
|
+
// padding-right: 12px;
|
|
123
126
|
padding-top: 24px;
|
|
124
127
|
.cart_item-card {
|
|
125
128
|
display: flex;
|
package/dist/table.scss
CHANGED
|
@@ -164,7 +164,8 @@
|
|
|
164
164
|
}
|
|
165
165
|
&[data-show-more-rows="onScroll"] {
|
|
166
166
|
.table__container {
|
|
167
|
-
overflow-y:
|
|
167
|
+
overflow-y: scroll;
|
|
168
|
+
height: var(--_ctm-mob-lt-te-ht, var(--_ctm-tab-lt-te-ht, var(--_ctm-lt-te-ht))) !important;
|
|
168
169
|
|
|
169
170
|
&::-webkit-scrollbar {
|
|
170
171
|
width: var(
|
|
@@ -6,6 +6,7 @@ export interface TableControlInterface {
|
|
|
6
6
|
selectorKey?: string;
|
|
7
7
|
header?: CMSIBCommonInterface;
|
|
8
8
|
headerHeight?: CMSIBCommonInterface;
|
|
9
|
+
tableHeight?: any;
|
|
9
10
|
rowHeight?: CMSIBCommonInterface;
|
|
10
11
|
layoutHeaderDivider?: CMSIBCommonInterface;
|
|
11
12
|
layoutRowDivider?: CMSIBCommonInterface;
|