@sc-360-v2/storefront-cms-library 0.3.25 → 0.3.27
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/cart-details.scss +198 -200
- package/dist/cart-summary.scss +179 -114
- package/dist/cartAttributes.scss +92 -24
- package/dist/form-preview.scss +11 -0
- package/dist/icons.js +1 -1
- package/dist/index.js +1 -1
- package/dist/modal.scss +100 -35
- package/dist/order-status.scss +8 -4
- package/dist/quick-order-pad.scss +63 -2
- package/dist/section.scss +6 -0
- package/dist/types/builder/elements/cart-summary/index.d.ts +27 -0
- package/dist/types/builder/elements/form-builder/index.d.ts +226 -27
- package/dist/types/builder/enums/index.d.ts +8 -3
- package/dist/types/builder/index.d.ts +2 -1
- package/dist/types/builder/tools/element-edit/cartAttributes.d.ts +175 -7
- package/dist/types/builder/tools/element-edit/cartDetails.d.ts +5 -0
- package/dist/types/builder/tools/element-edit/cartSummary.d.ts +339 -14
- package/dist/types/builder/tools/element-edit/orderStatus.d.ts +125 -242
- package/dist/widget.scss +0 -1
- package/package.json +1 -1
package/dist/cart-details.scss
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
|
|
4
4
|
$resizerId: "[data-cms-tool='cms-element-resizer']";
|
|
5
5
|
$resizeActive: '[data-cms-element-resizer="true"]';
|
|
6
|
-
$defaultValues: (
|
|
7
|
-
|
|
8
|
-
);
|
|
6
|
+
// $defaultValues: (
|
|
7
|
+
// --_dm-flt: getListOfResponsive(flex-end, flex-start),
|
|
8
|
+
// );
|
|
9
9
|
[data-div-type="element"] {
|
|
10
10
|
&[data-element-type="cartDetails"] {
|
|
11
11
|
width: var(
|
|
@@ -80,6 +80,7 @@ $defaultValues: (
|
|
|
80
80
|
align-items: center;
|
|
81
81
|
gap: 12px;
|
|
82
82
|
align-self: stretch;
|
|
83
|
+
padding-bottom: 24px;
|
|
83
84
|
|
|
84
85
|
.cart_title {
|
|
85
86
|
color: var(--_ctm-dn-ct-hg-ss-cr);
|
|
@@ -177,15 +178,27 @@ $defaultValues: (
|
|
|
177
178
|
}
|
|
178
179
|
|
|
179
180
|
.wishlist-modal {
|
|
181
|
+
display: flex;
|
|
182
|
+
flex-direction: column;
|
|
183
|
+
gap: 1rem;
|
|
184
|
+
padding: 10px 16px;
|
|
185
|
+
width: 100%;
|
|
186
|
+
overflow-y: auto;
|
|
187
|
+
|
|
180
188
|
.form-group {
|
|
181
|
-
|
|
189
|
+
display: flex;
|
|
190
|
+
flex-direction: column;
|
|
191
|
+
gap: 8px;
|
|
182
192
|
|
|
183
193
|
label {
|
|
184
194
|
display: block;
|
|
185
|
-
margin-bottom: 0.25rem;
|
|
186
195
|
font-size: 0.875rem;
|
|
187
196
|
font-weight: 500;
|
|
188
|
-
color: #374151;
|
|
197
|
+
color: #374151;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.primary_text_label {
|
|
201
|
+
font-weight: 700;
|
|
189
202
|
}
|
|
190
203
|
|
|
191
204
|
input,
|
|
@@ -193,16 +206,33 @@ $defaultValues: (
|
|
|
193
206
|
width: 100%;
|
|
194
207
|
padding: 0.5rem 0.75rem;
|
|
195
208
|
font-size: 0.875rem;
|
|
196
|
-
border: 1px solid #d1d5db;
|
|
209
|
+
border: 1px solid #d1d5db;
|
|
197
210
|
border-radius: 0.375rem;
|
|
198
211
|
outline: none;
|
|
199
212
|
box-sizing: border-box;
|
|
200
213
|
transition: all 0.2s;
|
|
201
214
|
|
|
202
215
|
&:focus {
|
|
203
|
-
border-color: #2563eb;
|
|
216
|
+
border-color: #2563eb;
|
|
204
217
|
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
|
|
205
218
|
}
|
|
219
|
+
|
|
220
|
+
&[type="radio"] {
|
|
221
|
+
width: fit-content;
|
|
222
|
+
height: fit-content;
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.radio-group {
|
|
227
|
+
display: flex;
|
|
228
|
+
flex-direction: column;
|
|
229
|
+
gap: 12px;
|
|
230
|
+
|
|
231
|
+
.radio-label {
|
|
232
|
+
display: flex;
|
|
233
|
+
align-items: center;
|
|
234
|
+
gap: 8px;
|
|
235
|
+
}
|
|
206
236
|
}
|
|
207
237
|
|
|
208
238
|
textarea {
|
|
@@ -211,19 +241,136 @@ $defaultValues: (
|
|
|
211
241
|
}
|
|
212
242
|
}
|
|
213
243
|
|
|
244
|
+
.employee-row-wrapper {
|
|
245
|
+
display: flex;
|
|
246
|
+
flex-direction: column;
|
|
247
|
+
gap: 12px;
|
|
248
|
+
.employee-row {
|
|
249
|
+
display: flex;
|
|
250
|
+
align-items: center;
|
|
251
|
+
gap: 1rem;
|
|
252
|
+
|
|
253
|
+
.dropdown {
|
|
254
|
+
flex: 1;
|
|
255
|
+
display: flex;
|
|
256
|
+
flex-direction: column;
|
|
257
|
+
gap: 8px;
|
|
258
|
+
max-width: 400px;
|
|
259
|
+
|
|
260
|
+
.quick-order-product-dropdown-section {
|
|
261
|
+
padding: 0rem;
|
|
262
|
+
border: 1px solid #d1d5db;
|
|
263
|
+
border-radius: 0.375px;
|
|
264
|
+
|
|
265
|
+
.dropdown-input-section {
|
|
266
|
+
padding: 0.5rem;
|
|
267
|
+
|
|
268
|
+
.input-field {
|
|
269
|
+
border: none;
|
|
270
|
+
box-shadow: none;
|
|
271
|
+
padding: 0px;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.dropdown-menu {
|
|
275
|
+
top: 40px;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.checkbox-wrapper {
|
|
282
|
+
display: flex;
|
|
283
|
+
align-items: center;
|
|
284
|
+
flex-direction: column;
|
|
285
|
+
gap: 0.5rem;
|
|
286
|
+
white-space: nowrap;
|
|
287
|
+
align-self: stretch;
|
|
288
|
+
align-items: flex-start;
|
|
289
|
+
|
|
290
|
+
.checkbox-container {
|
|
291
|
+
display: flex;
|
|
292
|
+
width: 3.5rem;
|
|
293
|
+
align-items: center;
|
|
294
|
+
flex: 1 1 auto;
|
|
295
|
+
justify-content: center;
|
|
296
|
+
|
|
297
|
+
input[type="checkbox"] {
|
|
298
|
+
width: 20px;
|
|
299
|
+
height: 20px;
|
|
300
|
+
border: 1px solid #d0d5dd;
|
|
301
|
+
border-radius: 4px;
|
|
302
|
+
position: relative;
|
|
303
|
+
background-color: #fff;
|
|
304
|
+
transition: all 0.2s ease;
|
|
305
|
+
|
|
306
|
+
&::after {
|
|
307
|
+
content: "";
|
|
308
|
+
position: absolute;
|
|
309
|
+
display: none;
|
|
310
|
+
left: 5px;
|
|
311
|
+
top: 0.5px;
|
|
312
|
+
width: 5px;
|
|
313
|
+
height: 10px;
|
|
314
|
+
border: solid #fff;
|
|
315
|
+
border-width: 0 2px 2px 0;
|
|
316
|
+
transform: rotate(45deg);
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.delete-icon-wrapper {
|
|
323
|
+
display: flex;
|
|
324
|
+
align-items: center;
|
|
325
|
+
flex-direction: column;
|
|
326
|
+
gap: 0.5rem;
|
|
327
|
+
white-space: nowrap;
|
|
328
|
+
align-self: stretch;
|
|
329
|
+
align-items: flex-start;
|
|
330
|
+
|
|
331
|
+
.delete-icon-container {
|
|
332
|
+
display: flex;
|
|
333
|
+
width: 100%;
|
|
334
|
+
align-items: center;
|
|
335
|
+
flex: 1 1 auto;
|
|
336
|
+
justify-content: center;
|
|
337
|
+
|
|
338
|
+
.delete-icon {
|
|
339
|
+
cursor: pointer;
|
|
340
|
+
svg {
|
|
341
|
+
width: 20px;
|
|
342
|
+
height: 20px;
|
|
343
|
+
path {
|
|
344
|
+
stroke: #6b7280; // gray-500
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
&:hover {
|
|
348
|
+
path {
|
|
349
|
+
stroke: #ef4444;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
214
359
|
.action-buttons {
|
|
215
|
-
margin-top: 1.5rem;
|
|
216
360
|
display: flex;
|
|
217
361
|
gap: 1rem;
|
|
218
|
-
align-items:
|
|
362
|
+
align-items: flex-end;
|
|
363
|
+
justify-content: flex-end;
|
|
364
|
+
flex: 1 1 auto;
|
|
219
365
|
|
|
220
366
|
.create-btn {
|
|
221
367
|
background-color: #243dc6;
|
|
222
368
|
color: #fff;
|
|
223
|
-
padding:
|
|
369
|
+
padding: 12px 24px;
|
|
224
370
|
border-radius: 0.375rem;
|
|
225
371
|
border: none;
|
|
226
372
|
cursor: pointer;
|
|
373
|
+
line-height: 24px;
|
|
227
374
|
font-weight: 500;
|
|
228
375
|
|
|
229
376
|
&:hover {
|
|
@@ -234,9 +381,11 @@ $defaultValues: (
|
|
|
234
381
|
.discard-btn {
|
|
235
382
|
background: none;
|
|
236
383
|
border: none;
|
|
384
|
+
padding: 12px 24px;
|
|
237
385
|
color: #374151;
|
|
238
386
|
font-size: 0.875rem;
|
|
239
387
|
cursor: pointer;
|
|
388
|
+
line-height: 24px;
|
|
240
389
|
|
|
241
390
|
&:hover {
|
|
242
391
|
text-decoration: underline;
|
|
@@ -244,6 +393,7 @@ $defaultValues: (
|
|
|
244
393
|
}
|
|
245
394
|
}
|
|
246
395
|
}
|
|
396
|
+
|
|
247
397
|
.cart_products_wrapper,
|
|
248
398
|
.infinite-list-container {
|
|
249
399
|
max-height: calc(100vh - 148px);
|
|
@@ -269,7 +419,7 @@ $defaultValues: (
|
|
|
269
419
|
border-color: var(--_ctm-dn-ct-im-ss-br-cr);
|
|
270
420
|
border-width: var(--_ctm-dn-ct-im-ss-br-wh);
|
|
271
421
|
|
|
272
|
-
@include prepareMediaQueries($defaultValues);
|
|
422
|
+
// @include prepareMediaQueries($defaultValues);
|
|
273
423
|
|
|
274
424
|
.cart_product_wrapper {
|
|
275
425
|
display: flex;
|
|
@@ -318,7 +468,7 @@ $defaultValues: (
|
|
|
318
468
|
|
|
319
469
|
.product_info_wrapper {
|
|
320
470
|
display: flex;
|
|
321
|
-
width:
|
|
471
|
+
width: 380px;
|
|
322
472
|
flex-direction: column;
|
|
323
473
|
justify-content: space-between;
|
|
324
474
|
align-items: flex-start;
|
|
@@ -610,7 +760,7 @@ $defaultValues: (
|
|
|
610
760
|
display: flex;
|
|
611
761
|
justify-content: var(--_dm-flt);
|
|
612
762
|
align-items: center;
|
|
613
|
-
gap:
|
|
763
|
+
gap: 32px;
|
|
614
764
|
align-self: stretch;
|
|
615
765
|
|
|
616
766
|
.product_qty_wrapper {
|
|
@@ -652,7 +802,7 @@ $defaultValues: (
|
|
|
652
802
|
border-radius: 0px 4px 4px 0px;
|
|
653
803
|
background: #fff;
|
|
654
804
|
border-left: 1px solid #d0d5dd;
|
|
655
|
-
max-width:
|
|
805
|
+
max-width: 80px;
|
|
656
806
|
}
|
|
657
807
|
}
|
|
658
808
|
}
|
|
@@ -703,6 +853,7 @@ $defaultValues: (
|
|
|
703
853
|
--_ctm-mob-dn-pt-pe-ss-ue,
|
|
704
854
|
var(--_ctm-tab-dn-pt-pe-ss-ue, var(--_ctm-dn-pt-pe-ss-ue))
|
|
705
855
|
);
|
|
856
|
+
min-width: 80px;
|
|
706
857
|
}
|
|
707
858
|
}
|
|
708
859
|
|
|
@@ -798,165 +949,12 @@ $defaultValues: (
|
|
|
798
949
|
// }
|
|
799
950
|
}
|
|
800
951
|
|
|
801
|
-
.attributes-section-body {
|
|
802
|
-
padding-top: 1rem;
|
|
803
|
-
width: 100%;
|
|
804
|
-
display: flex;
|
|
805
|
-
flex-wrap: wrap;
|
|
806
|
-
gap: 16px;
|
|
807
|
-
padding: 8px;
|
|
808
|
-
.attribute {
|
|
809
|
-
// margin-bottom: 1.25rem;
|
|
810
|
-
width: 240px;
|
|
811
|
-
div * {
|
|
812
|
-
// width: 100%;
|
|
813
|
-
}
|
|
814
|
-
.label {
|
|
815
|
-
display: block;
|
|
816
|
-
// font-size: 0.875rem;
|
|
817
|
-
// font-weight: 500;
|
|
818
|
-
// color: #374151;
|
|
819
|
-
white-space: nowrap;
|
|
820
|
-
color: var(
|
|
821
|
-
--_ctm-mob-dn-pt-as-is-cr,
|
|
822
|
-
var(--_ctm-tab-dn-pt-as-is-cr, var(--_ctm-dn-pt-as-is-cr))
|
|
823
|
-
);
|
|
824
|
-
font-family: var(
|
|
825
|
-
--_sf-hr-ff,
|
|
826
|
-
var(
|
|
827
|
-
--_ctm-mob-dn-pt-as-is-ft-fy,
|
|
828
|
-
var(--_ctm-tab-dn-pt-as-is-ft-fy, var(--_ctm-dn-pt-as-is-ft-fy))
|
|
829
|
-
)
|
|
830
|
-
);
|
|
831
|
-
font-size: var(
|
|
832
|
-
--_ctm-mob---_ctm-dn-pt-as-is-ft-se,
|
|
833
|
-
var(--_ctm-tab---_ctm-dn-pt-as-is-ft-se, var(--_ctm---_ctm-dn-pt-as-is-ft-se))
|
|
834
|
-
);
|
|
835
|
-
font-weight: var(
|
|
836
|
-
--_ctm-mob-dn-pt-as-is-ft-wt,
|
|
837
|
-
var(--_ctm-tab-dn-pt-as-is-ft-wt, var(--_ctm-dn-pt-as-is-ft-wt))
|
|
838
|
-
);
|
|
839
|
-
font-style: var(
|
|
840
|
-
--_ctm-mob-dn-pt-as-ss-ft-se-ic,
|
|
841
|
-
var(--_ctm-tab-dn-pt-as-ss-ft-se-ic, var(--_ctm-dn-pt-as-ss-ft-se-ic))
|
|
842
|
-
);
|
|
843
|
-
text-align: var(
|
|
844
|
-
--_ctm-mob-dn-pt-as-is-tt-an,
|
|
845
|
-
var(--_ctm-tab-dn-pt-as-is-tt-an, var(--_ctm-dn-pt-as-is-tt-an))
|
|
846
|
-
);
|
|
847
|
-
letter-spacing: var(
|
|
848
|
-
--_ctm-mob-dn-pt-as-is-lr-sg,
|
|
849
|
-
var(--_ctm-tab-dn-pt-as-is-lr-sg, var(--_ctm-dn-pt-as-is-lr-sg))
|
|
850
|
-
);
|
|
851
|
-
line-height: var(
|
|
852
|
-
--_ctm-mob-dn-pt-as-is-le-ht,
|
|
853
|
-
var(--_ctm-tab-dn-pt-as-is-le-ht, var(--_ctm-dn-pt-as-is-le-ht))
|
|
854
|
-
);
|
|
855
|
-
text-decoration: var(
|
|
856
|
-
--_ctm-mob-dn-pt-as-is-ue,
|
|
857
|
-
var(--_ctm-tab-dn-pt-as-is-ue, var(--_ctm-dn-pt-as-is-ue))
|
|
858
|
-
);
|
|
859
|
-
margin-bottom: 0.5rem;
|
|
860
|
-
|
|
861
|
-
&.required::after {
|
|
862
|
-
content: " *";
|
|
863
|
-
color: #dc2626;
|
|
864
|
-
}
|
|
865
|
-
}
|
|
866
|
-
.image_file_a,
|
|
867
|
-
.file_a {
|
|
868
|
-
padding: 8px 0px !important;
|
|
869
|
-
border-radius: 4px;
|
|
870
|
-
// border: 1px solid #ccc;
|
|
871
|
-
/* background-color: #f9fafb !important; */
|
|
872
|
-
outline: none;
|
|
873
|
-
transition: border-color 0.2s ease-in-out;
|
|
874
|
-
font-size: 14px;
|
|
875
|
-
height: 40px;
|
|
876
|
-
}
|
|
877
|
-
.image_file_a button,
|
|
878
|
-
.file_a button {
|
|
879
|
-
font-family: var(
|
|
880
|
-
--_sf-hr-ff,
|
|
881
|
-
var(
|
|
882
|
-
--_ctm-mob-dn-pt-as-is-ft-fy,
|
|
883
|
-
var(--_ctm-tab-dn-pt-as-is-ft-fy, var(--_ctm-dn-pt-as-is-ft-fy))
|
|
884
|
-
)
|
|
885
|
-
);
|
|
886
|
-
}
|
|
887
|
-
.attribute_form_field {
|
|
888
|
-
width: 100% !important;
|
|
889
|
-
padding: 8px 12px !important;
|
|
890
|
-
// border-radius: 4px;
|
|
891
|
-
// border: 1px solid #ccc;
|
|
892
|
-
/* background-color: #f9fafb !important; */
|
|
893
|
-
border-style: var(
|
|
894
|
-
--_ctm-mob-dn-pt-as-is-br-se,
|
|
895
|
-
var(--_ctm-tab-dn-pt-as-is-br-se, var(--_ctm-dn-pt-as-is-br-se))
|
|
896
|
-
);
|
|
897
|
-
border-width: var(
|
|
898
|
-
--_ctm-mob-dn-pt-as-is-br-wh,
|
|
899
|
-
var(--_ctm-tab-dn-pt-as-is-br-wh, var(--_ctm-dn-pt-as-is-br-wh))
|
|
900
|
-
);
|
|
901
|
-
// border: ;
|
|
902
|
-
border-radius: var(
|
|
903
|
-
--_ctm-mob-dn-pt-as-is-br-rs,
|
|
904
|
-
var(--_ctm-tab-dn-pt-as-is-br-rs, var(--_ctm-dn-pt-as-is-br-rs))
|
|
905
|
-
);
|
|
906
|
-
border-color: var(
|
|
907
|
-
--_ctm-mob-dn-pt-as-is-br-cr,
|
|
908
|
-
var(--_ctm-tab-dn-pt-as-is-br-cr, var(--_ctm-dn-pt-as-is-br-cr))
|
|
909
|
-
);
|
|
910
|
-
outline: none;
|
|
911
|
-
transition: border-color 0.2s ease-in-out;
|
|
912
|
-
font-size: 14px;
|
|
913
|
-
height: 40px;
|
|
914
|
-
|
|
915
|
-
font-family: var(
|
|
916
|
-
--_sf-hr-ff,
|
|
917
|
-
var(
|
|
918
|
-
--_ctm-mob-dn-pt-as-is-ft-fy,
|
|
919
|
-
var(--_ctm-tab-dn-pt-as-is-ft-fy, var(--_ctm-dn-pt-as-is-ft-fy))
|
|
920
|
-
)
|
|
921
|
-
);
|
|
922
952
|
|
|
923
|
-
&:focus {
|
|
924
|
-
border-color: #3b82f6;
|
|
925
|
-
background-color: #fff;
|
|
926
|
-
}
|
|
927
|
-
|
|
928
|
-
&.error {
|
|
929
|
-
border-color: #dc2626;
|
|
930
|
-
background-color: #fef2f2;
|
|
931
|
-
}
|
|
932
|
-
}
|
|
933
|
-
|
|
934
|
-
textarea {
|
|
935
|
-
min-height: 100px;
|
|
936
|
-
resize: vertical;
|
|
937
|
-
font-family: var(
|
|
938
|
-
--_sf-hr-ff,
|
|
939
|
-
var(
|
|
940
|
-
--_ctm-mob-dn-pt-as-is-ft-fy,
|
|
941
|
-
var(--_ctm-tab-dn-pt-as-is-ft-fy, var(--_ctm-dn-pt-as-is-ft-fy))
|
|
942
|
-
)
|
|
943
|
-
);
|
|
944
|
-
}
|
|
945
|
-
}
|
|
946
|
-
.text_area_attribute {
|
|
947
|
-
width: 100%;
|
|
948
|
-
}
|
|
949
|
-
.cart_item_attr_disabled {
|
|
950
|
-
pointer-events: none;
|
|
951
|
-
opacity: 0.5;
|
|
952
|
-
cursor: auto;
|
|
953
|
-
}
|
|
954
|
-
}
|
|
955
953
|
|
|
956
954
|
.infinite-list-container {
|
|
957
955
|
display: flex;
|
|
958
956
|
flex-direction: column;
|
|
959
|
-
gap:
|
|
957
|
+
gap: 48px;
|
|
960
958
|
max-width: 100%;
|
|
961
959
|
min-width: 100%;
|
|
962
960
|
|
|
@@ -1019,34 +1017,34 @@ $defaultValues: (
|
|
|
1019
1017
|
}
|
|
1020
1018
|
}
|
|
1021
1019
|
|
|
1022
|
-
@media (max-width: 750px) {
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
}
|
|
1033
|
-
@media (max-width: 448px) {
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
}
|
|
1020
|
+
// @media (max-width: 750px) {
|
|
1021
|
+
// .product_qty_price_wrapper {
|
|
1022
|
+
// // justify-content: flex-start !important;
|
|
1023
|
+
// }
|
|
1024
|
+
// .cart_product_right_wrapper {
|
|
1025
|
+
// flex-direction: inherit;
|
|
1026
|
+
// align-items: center;
|
|
1027
|
+
// margin-top: 24px !important;
|
|
1028
|
+
// width: 100%;
|
|
1029
|
+
// }
|
|
1030
|
+
// }
|
|
1031
|
+
// @media (max-width: 448px) {
|
|
1032
|
+
// // .wrapper {
|
|
1033
|
+
// // background-color: red;
|
|
1034
|
+
// // }
|
|
1035
|
+
// .cart_product_right_wrapper {
|
|
1036
|
+
// display: block;
|
|
1037
|
+
// }
|
|
1038
|
+
// .product_qty_price_wrapper {
|
|
1039
|
+
// margin-bottom: 12px;
|
|
1040
|
+
// }
|
|
1041
|
+
// .cart_product_left_wrapper {
|
|
1042
|
+
// display: block;
|
|
1043
|
+
// }
|
|
1044
|
+
// .cart_product_left_wrapper .product_image {
|
|
1045
|
+
// margin-bottom: 12px;
|
|
1046
|
+
// }
|
|
1047
|
+
// .product_info_wrapper {
|
|
1048
|
+
// width: 100%;
|
|
1049
|
+
// }
|
|
1050
|
+
// }
|