diff --git a/CHANGELOG.md b/CHANGELOG.md index 441e0577bb..fa3fa619b4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog +- Content should not scroll in two directions when zoomed. [#1853](https://github.com/bigcommerce/cornerstone/pull/1853) - Quick search query param needs to be fixed while navigating to search page. [#230](https://jira.bigcommerce.com/browse/BCTHEME-230) ## Draft diff --git a/assets/scss/components/stencil/productView/_productView.scss b/assets/scss/components/stencil/productView/_productView.scss index 705f0fa338..b0581b476d 100644 --- a/assets/scss/components/stencil/productView/_productView.scss +++ b/assets/scss/components/stencil/productView/_productView.scss @@ -119,10 +119,17 @@ // Details // ----------------------------------------------------------------------------- +// +// 1. for Androind Chrome and IE with zoom horizontal scroll fix +// +// ----------------------------------------------------------------------------- .productView-details { padding-bottom: spacing("single") + spacing("third"); - overflow: hidden; // for Androind Chrome horizontal scroll fix + + &.product-options { + overflow: hidden; // 1 + } } diff --git a/templates/components/products/product-view.html b/templates/components/products/product-view.html index f9f1200138..1e85bf37fd 100644 --- a/templates/components/products/product-view.html +++ b/templates/components/products/product-view.html @@ -214,7 +214,7 @@