wickes-css2 2.97.0-remove-unpkg.2 → 2.97.0
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/Readme.md +1 -1
- package/build/css/category-main.css +1 -1
- package/build/css/components/global-search.css +1 -1
- package/build/css/components/loader.css +1 -1
- package/build/css/homepage-main.css +1 -1
- package/build/css/main.css +1 -1
- package/build/css/my-account-main-v2.css +1 -1
- package/build/css/my-account-main.css +1 -1
- package/build/css/pages/page_default-store.css +1 -1
- package/build/css/pages/page_home.css +1 -1
- package/build/css/pages/page_my-orders.css +1 -1
- package/build/css/pages/page_product-details-v2.css +1 -1
- package/build/css/pages/page_shopping-cart-v2.css +1 -1
- package/build/css/pages/tradePro-rewards.css +1 -1
- package/build/css/pdp-main-before-combine.css +1 -1
- package/build/css/pdp-main-non-critical.css +1 -1
- package/build/css/pdp-main.css +1 -1
- package/build/css/plp-main.css +1 -1
- package/build/css/store-locator-main.css +1 -1
- package/build/js/page/smart-banner.js +50 -0
- package/build/js/smart-banner.min.js +1 -0
- package/package.json +12 -5
- package/src/components/big-wins.hbs +4 -4
- package/src/components/google-banner.hbs +5 -5
- package/src/components/offer-banner.hbs +28 -12
- package/src/components/smart-banner.hbs +25 -0
- package/src/components/voucher.hbs +2 -1
- package/src/data/data_voucher_tradePro.json +1 -1
- package/src/js/page/smart-banner.js +50 -0
- package/src/layouts/base.hbs +13 -3
- package/src/page_app_diy_google_ios_banner.html +120 -0
- package/src/page_app_trade_pro_google_ios_banner.html +121 -0
- package/src/partials/scripts.hbs +7 -0
- package/src/scss/components/_big-wins.scss +6 -8
- package/src/scss/components/_cards-slider.scss +8 -0
- package/src/scss/components/_smart-banner.scss +89 -0
- package/src/scss/components/loader.scss +24 -1
- package/src/scss/globals/_global-components.scss +1 -0
- package/src/scss/helpers/_variables.scss +1 -0
- package/src/scss/main.scss +1 -0
- package/src/scss/pages/page_home.scss +1 -0
- package/src/scss/pages/tradePro-rewards.scss +0 -1
- package/src/sitemap.html +8 -0
package/Readme.md
CHANGED
|
@@ -234,6 +234,7 @@ While using breakpoints we should use right order of its placement:
|
|
|
234
234
|
```
|
|
235
235
|
|
|
236
236
|
* Preferable way is to use one way of breakpoints direction: -up or -down, and to use them both only in exceptional cases
|
|
237
|
+
|
|
237
238
|
* -only breakpoints should be placed only after group of -up or -down
|
|
238
239
|
|
|
239
240
|
## Js
|
|
@@ -278,4 +279,3 @@ visual - https://epam.invisionapp.com/d/main/#/projects/prototypes/13168469
|
|
|
278
279
|
For activation sticky functionality in checkout-right-aside, please do next steps:
|
|
279
280
|
1) please wrap right aside content by <div class=“right-aside-sticky”></div>;
|
|
280
281
|
2) if page contains "recently viewed" component, please wrap it by <div class="footer_sticky-right-aside">
|
|
281
|
-
|