wickes-css2 2.107.0-develop.4 → 2.107.0-develop.6

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.
Files changed (33) hide show
  1. package/build/css/category-main.css +1 -1
  2. package/build/css/components/card-product-banner.css +1 -1
  3. package/build/css/homepage-main.css +1 -1
  4. package/build/css/kitchen-plp-main.css +1 -1
  5. package/build/css/main.css +1 -1
  6. package/build/css/my-account-main-v2.css +1 -1
  7. package/build/css/my-account-main.css +1 -1
  8. package/build/css/pages/page_product_search.css +1 -1
  9. package/build/css/pages/page_products-list-combined.css +1 -1
  10. package/build/css/pages/page_products-list_v2.css +1 -1
  11. package/build/css/pdp-main-before-combine.css +1 -1
  12. package/build/css/pdp-main-non-critical.css +1 -1
  13. package/build/css/pdp-main.css +1 -1
  14. package/build/css/plp-main.css +1 -1
  15. package/build/css/store-locator-main.css +1 -1
  16. package/build/js/emulation.min.js +1 -27
  17. package/build/js/gift-cards.min.js +1 -1
  18. package/build/js/page/checkout-payment-details.js +11 -87
  19. package/build/js/page/components/gift-cards.js +1 -1
  20. package/package.json +1 -1
  21. package/src/components/checkout-payment-details-v2.hbs +4 -4
  22. package/src/components/checkout-payment-info-block.hbs +1 -1
  23. package/src/data/data_quick-filter.json +3 -3
  24. package/src/js/emulation/checkout-payment-details.js +1 -34
  25. package/src/js/page/checkout-payment-details.js +11 -87
  26. package/src/js/page/components/gift-cards.js +1 -1
  27. package/src/scss/components/_plp-filters.scss +9 -0
  28. package/src/scss/components/_quick-filter.scss +43 -11
  29. package/src/scss/components/_search-filter.scss +6 -0
  30. package/src/scss/components/card-product-banner.scss +1 -10
  31. package/src/scss/pages/page_product_search.scss +3 -13
  32. package/src/scss/pages/page_products-list-combined.scss +1 -28
  33. package/src/scss/pages/page_products-list_v2.scss +2 -19
@@ -256,7 +256,7 @@ $color-bar-radius: 3px;
256
256
  margin-right: -5px;
257
257
  margin-left: -5px;
258
258
  margin-top: 0;
259
- padding-top: 40px;
259
+ padding-top: 20px;
260
260
  overflow-x: hidden;
261
261
  }
262
262
 
@@ -279,20 +279,6 @@ $color-bar-radius: 3px;
279
279
  padding: 3px 5px;
280
280
  }
281
281
 
282
- .card {
283
- &:nth-of-type(1)::before,
284
- &:nth-of-type(2)::before {
285
- @include media-breakpoint-down(sm) {
286
- content: '';
287
- position: absolute;
288
- top: -20px;
289
- left: 5px;
290
- width: calc(100% - 10px);
291
- border-bottom: 1px solid $gray;
292
- }
293
- }
294
- }
295
-
296
282
  .card {
297
283
  @include media-breakpoint-down(sm) {
298
284
  margin-bottom: 20px;
@@ -300,24 +286,11 @@ $color-bar-radius: 3px;
300
286
  display: inline-block;
301
287
  vertical-align: top;
302
288
  max-width: 50%;
303
- margin-right: -4px;
304
289
  padding-left: 5px;
305
290
  padding-right: 5px;
306
291
  width: 50%;
307
292
  }
308
293
 
309
- &:nth-of-type(1)::before,
310
- &:nth-of-type(2)::before {
311
- @include media-breakpoint-down(sm) {
312
- content: '';
313
- position: absolute;
314
- top: -20px;
315
- left: 5px;
316
- width: calc(100% - 10px);
317
- border-bottom: 1px solid $gray;
318
- }
319
- }
320
-
321
294
  &__inner-v2.card__inner-v2.card__inner-v2 {
322
295
  padding-bottom: 0;
323
296
 
@@ -1,13 +1,11 @@
1
1
  @import '../helpers/helpers';
2
2
 
3
-
4
3
  .products-list-v2 {
5
-
6
4
  @include media-breakpoint-down(sm) {
7
5
  margin-right: -5px;
8
6
  margin-left: -5px;
9
7
  margin-top: 0;
10
- padding-top: 40px;
8
+ padding-top: 20px;
11
9
  overflow-x: hidden;
12
10
  }
13
11
 
@@ -17,7 +15,7 @@
17
15
  font-size: 1rem;
18
16
 
19
17
  @include media-breakpoint-down(sm) {
20
- font-size: .875rem;
18
+ font-size: 0.875rem;
21
19
  }
22
20
  }
23
21
 
@@ -31,28 +29,13 @@
31
29
  }
32
30
 
33
31
  .card {
34
-
35
32
  @include media-breakpoint-down(sm) {
36
33
  position: relative;
37
34
  display: inline-block;
38
35
  vertical-align: top;
39
36
  max-width: 50%;
40
- margin-right: -4px;
41
37
  padding-left: 5px;
42
38
  padding-right: 5px;
43
-
44
- }
45
-
46
- &:nth-of-type(1)::before,
47
- &:nth-of-type(2)::before {
48
- @include media-breakpoint-down(sm) {
49
- content: '';
50
- position: absolute;
51
- top: -20px;
52
- left: 5px;
53
- width: calc(100% - 10px);
54
- border-bottom: 1px solid $gray;
55
- }
56
39
  }
57
40
  }
58
41
  }