wickes-css2 2.97.0-develop.5 → 2.97.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wickes-css2",
3
- "version": "2.97.0-develop.5",
3
+ "version": "2.97.0-develop.6",
4
4
  "description": "CSS and JS and page templates in use by Wickes",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -58,11 +58,11 @@
58
58
  {{#if switch-vat}}
59
59
  <div class="stock__price including-vat-inherit">
60
60
  £<span class="stock__price-val">149.99</span>
61
- <div class="popover-mini-basket__price-vat">Inc.VAT</div>
61
+ <div class="price-vat">Inc.VAT</div>
62
62
  </div>
63
63
  <div class="stock__price excluding-vat-inherit">
64
64
  £<span class="stock__price-val">149.99</span>
65
- <div class="popover-mini-basket__price-vat">Exc.VAT</div>
65
+ <div class="price-vat">Exc.VAT</div>
66
66
  </div>
67
67
  {{else}}
68
68
  <div class="stock__price">
@@ -122,11 +122,11 @@
122
122
  {{#if switch-vat}}
123
123
  <div class="stock__cost including-vat-inherit">
124
124
  £<span class="stock__cost-val">149.99</span>
125
- <div class="popover-mini-basket__price-vat">Inc.VAT</div>
125
+ <div class="price-vat">Inc.VAT</div>
126
126
  </div>
127
127
  <div class="stock__cost excluding-vat-inherit">
128
128
  £<span class="stock__cost-val">149.99</span>
129
- <div class="popover-mini-basket__price-vat">Exc.VAT</div>
129
+ <div class="price-vat">Exc.VAT</div>
130
130
  </div>
131
131
  {{else}}
132
132
  <div class="stock__cost">
@@ -42,7 +42,8 @@
42
42
  </div>
43
43
  <div class="my-3">
44
44
  <div class="voucher__code-field copy-tradePro-barcode">
45
- <input type="text" value="{{online.code}}" disabled>
45
+ <span>{{online.code}}</span>
46
+ <input type="hidden" value="{{online.code}}" disabled>
46
47
  <span class="icon">
47
48
  <i class="fas fa-copy"></i>
48
49
  </span>
@@ -41,7 +41,7 @@
41
41
  "label": "Online-only",
42
42
  "title": "TradePro custom title",
43
43
  "note": "Don't forget to use this code on checkout",
44
- "code": "WPRAJU119",
44
+ "code": "TPRNUR19-E9X9-XK2B",
45
45
  "buttonText": "Shop now",
46
46
  "buttonLink": "#"
47
47
  },
@@ -220,7 +220,7 @@
220
220
  display: flex;
221
221
  align-items: baseline;
222
222
 
223
- .popover-mini-basket__price-vat {
223
+ .price-vat {
224
224
  margin-left: .25rem;
225
225
  }
226
226
  }
@@ -331,19 +331,17 @@
331
331
  &__cost {
332
332
  display: flex;
333
333
  align-items: baseline;
334
- }
335
-
336
- &__cost,
337
- &__amount {
338
- font-size: .875rem;
339
- font-weight: 500;
334
+ font-size: .9375rem;
335
+ font-weight: 700;
340
336
 
341
- .popover-mini-basket__price-vat {
337
+ .price-vat {
342
338
  margin-left: .25rem;
343
339
  }
344
340
  }
345
341
 
346
342
  &__amount {
343
+ font-size: .875rem;
344
+ font-weight: 500;
347
345
  padding-bottom: 5px;
348
346
  }
349
347
 
@@ -86,3 +86,11 @@
86
86
  }
87
87
  }
88
88
  }
89
+
90
+ @include media-breakpoint-up(xl) {
91
+ .cards-slider {
92
+ .swiper-container {
93
+ overflow: hidden;
94
+ }
95
+ }
96
+ }
@@ -120,7 +120,6 @@ $voucher-cell-height-xl: 296px;
120
120
 
121
121
  &__code-field {
122
122
  display: inline-block;
123
- height: 40px;
124
123
  padding: 8px 16px;
125
124
  background: $ma-white;
126
125
  border-radius: $border-radius;