From ac3c371dee6865a5eb356d99101dc3689c44eb99 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Wed, 3 Aug 2016 16:22:02 -0400 Subject: [PATCH] added margin for small only above the ad rotate slider , 140px to offset the fixed position of the sticky header --- css/app.css | 3 ++- scss/_slideshow.scss | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/css/app.css b/css/app.css index 8982425..6929413 100644 --- a/css/app.css +++ b/css/app.css @@ -6624,7 +6624,8 @@ main { @media only screen and (max-width: 40em) { #slideshow { - height: 270px; } } + height: 270px; + margin-top: 140px; } } #slideshow li { list-style: none; } @media only screen and (min-width:40.063em) and (max-width:64em) { diff --git a/scss/_slideshow.scss b/scss/_slideshow.scss index c445b54..eaacdd3 100644 --- a/scss/_slideshow.scss +++ b/scss/_slideshow.scss @@ -1,6 +1,7 @@ #slideshow { @media #{$small-only}{ height: 270px; + margin-top: 140px; } li { list-style: none; -- 2.17.1