diff --git a/CHANGELOG.md b/CHANGELOG.md index 293c54a6d1..8b61b27d8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Draft +- Fixed images placeholder on hero carousel shifted on mobile when slide has content. [#2112](https://github.com/bigcommerce/cornerstone/pull/2112) - Google AMP feature request - Add in release date info for preorder products. [#2107](https://github.com/bigcommerce/cornerstone/pull/2107) - Translation for states select field on account signup page. [#2105](https://github.com/bigcommerce/cornerstone/pull/2105) - Added description field below payment provider name on "My Account" -> "Payment Methods" page. [#2111](https://github.com/bigcommerce/cornerstone/pull/2111) diff --git a/assets/scss/components/stencil/heroCarousel/_heroCarousel.scss b/assets/scss/components/stencil/heroCarousel/_heroCarousel.scss index 60a7d2fbc5..ef4bb020f4 100644 --- a/assets/scss/components/stencil/heroCarousel/_heroCarousel.scss +++ b/assets/scss/components/stencil/heroCarousel/_heroCarousel.scss @@ -108,8 +108,10 @@ } &.is-image-error { - background: url("../img/hero-carousel-image-load-error.svg") center center no-repeat; - background-size: contain; + .heroCarousel-image-wrapper { + background: url("../img/hero-carousel-image-load-error.svg") center center no-repeat; + background-size: contain; + } } } }