diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e1ba0e9e0..48309e2973 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ - Fix an issue where required product list options would display an invalid "none" choice [#929](https://github.com/bigcommerce/stencil/pull/929) - Remove unused variable causing js error with search in the nav [#938](https://github.com/bigcommerce/stencil/pull/938) - Add settings to theme editor schema to customize Optimized Checkout discount banners [#924] (https://github.com/bigcommerce/stencil/pull/924) +- Update Optimized Checkout discount banners default values per theme variation [#942] (https://github.com/bigcommerce/stencil/pull/942) ## 1.5.2 (2017-02-14) - Added a setting to theme editor schema to show/hide the homepage carousel [#909](https://github.com/bigcommerce/stencil/pull/909) diff --git a/assets/scss/optimized-checkout.scss b/assets/scss/optimized-checkout.scss index 1bce6534ac..878b043004 100644 --- a/assets/scss/optimized-checkout.scss +++ b/assets/scss/optimized-checkout.scss @@ -191,6 +191,8 @@ a { .optimizedCheckout-discountBanner { background-color: stencilColor("optimizedCheckout-discountBanner-backgroundColor"); color: stencilColor("optimizedCheckout-discountBanner-textColor"); + font-family: stencilFontFamily("optimizedCheckout-link-font"), Arial, Helvetica, sans-serif; + font-weight: stencilFontWeight("optimizedCheckout-link-font"); svg { fill: stencilColor("optimizedCheckout-discountBanner-iconColor"); diff --git a/config.json b/config.json index 679ce3289f..80eca38e01 100644 --- a/config.json +++ b/config.json @@ -585,6 +585,7 @@ "optimizedCheckout-buttonSecondary-borderColor": "#d6cdc1", "optimizedCheckout-link-color": "#74685c", "optimizedCheckout-link-font": "Google_Roboto_400", + "optimizedCheckout-discountBanner-backgroundColor": "#F2EEE9", "optimizedCheckout-orderSummary-backgroundColor": "#ffffff", "optimizedCheckout-step-backgroundColor": "#5c5245", "optimizedCheckout-step-textColor": "#ffffff",