diff --git a/CHANGELOG.md b/CHANGELOG.md
index c989b5d7355e3520545fb950aa2b25569c92358b..955c2c575684ad764d1292c25f4b3ba4b613bc47 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,11 +4,12 @@ All notable changes to this project will be documented in this file.
 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).
 
-## [2.7.2]
+## [2.7.2]- 18/06/2020
 
 - Fixed Related Card/Preview Card components not receiving correct colors when used in Landing Pages
 - Fixed issue of half height images w/o has Header looking squashed
 - Removed enforcing of width in image field of News pattern (overriding drupal image style)
+- Fixes background image in centered section overflows
 
 ## [2.7.1] - 25/05/2020
 
diff --git a/patterns/molecules/row/css/row.component.css b/patterns/molecules/row/scss/row.component.css
similarity index 99%
rename from patterns/molecules/row/css/row.component.css
rename to patterns/molecules/row/scss/row.component.css
index e146e5e83932587a1962cfcca8ca9ffdb0c434ad..930b19e5bfa9deabee3ca2099b0c22fdab3a988f 100644
--- a/patterns/molecules/row/css/row.component.css
+++ b/patterns/molecules/row/scss/row.component.css
@@ -47,7 +47,8 @@
     box-sizing: border-box; }
   .component-row__display__centered {
     margin: auto;
-    max-width: 1140px; }
+    max-width: 1140px;
+    overflow: hidden; }
   .component-row__row {
     position: relative;
     z-index: 3; }
diff --git a/patterns/molecules/row/scss/row.component.scss b/patterns/molecules/row/scss/row.component.scss
old mode 100755
new mode 100644
index 34f9843f15dd7792ac57482dc172cbc96eb1afa1..5482944b0f1d390038b66ea9ef38e7ef51e6542a
--- a/patterns/molecules/row/scss/row.component.scss
+++ b/patterns/molecules/row/scss/row.component.scss
@@ -59,6 +59,7 @@
     &__centered {
       margin: auto;
       max-width: 1140px;
+      overflow: hidden;
     }
   }