From 883dd114b19b5ad2d2ddbd28f839b0ff6d3dc7d0 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 21 Oct 2015 13:03:25 -0400 Subject: [PATCH] Changed footer background image size from contain to 100% to fix safari display issues --- css/app.css | 2 +- scss/_body.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/app.css b/css/app.css index 935597d..2eb2471 100644 --- a/css/app.css +++ b/css/app.css @@ -6714,7 +6714,7 @@ body .shadow-wrapper { body #page-wrapper { background: url(../assets/footer-bkgrd.jpg) no-repeat; background-position: bottom center; - background-size: contain; } + background-size: 100%; } header.main { background: #2f4d4f; diff --git a/scss/_body.scss b/scss/_body.scss index 82582ce..bdfc958 100644 --- a/scss/_body.scss +++ b/scss/_body.scss @@ -13,6 +13,6 @@ body { #page-wrapper { background: url(../assets/footer-bkgrd.jpg) no-repeat; background-position: bottom center; - background-size: contain; + background-size: 100%; } } -- 2.17.1