diff --git a/CHANGELOG.md b/CHANGELOG.md index ff2f14459b..ff91fb0b99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ - Fixes mobile swatch selectability styling. [#1131](https://github.com/bigcommerce/cornerstone/pull/1131) - Fix Logo not loading on UCO page [#1132](https://github.com/bigcommerce/cornerstone/pull/1132) - Fixes functionality of date picker option on product pages. [#1125](https://github.com/bigcommerce/cornerstone/pull/1125) +- Fixes issue with image zoom causing scrolling issues on mobile. [#1140](https://github.com/bigcommerce/cornerstone/pull/1140) ## 1.10.0 (2017-11-15) - Fix spaces in faceted search option names [#1113](https://github.com/bigcommerce/cornerstone/pull/1113) diff --git a/assets/scss/components/stencil/productView/_productView.scss b/assets/scss/components/stencil/productView/_productView.scss index 36bc6473b2..26b95dea6a 100644 --- a/assets/scss/components/stencil/productView/_productView.scss +++ b/assets/scss/components/stencil/productView/_productView.scss @@ -33,6 +33,10 @@ + .productView-thumbnails { margin-top: spacing("half"); } + + @media (min-width: $screen-xxsmall) and (max-width: $screen-xsmall) { + pointer-events: none; + } } .productView-img-container {