Skip to content

Commit

Permalink
Disable pointer events and product image zoom for mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
Tolu Abayomi committed Jan 3, 2018
1 parent f8c8802 commit 30a9c3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
- 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)
- Fix image-overlap on Orders page [#1137](https://github.com/bigcommerce/cornerstone/pull/1137)
- 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)
Expand Down
4 changes: 4 additions & 0 deletions assets/scss/components/stencil/productView/_productView.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 30a9c3a

Please sign in to comment.