From cae2f012465edf43865c51fbbc379d3bd85f58c2 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Thu, 9 Feb 2017 16:46:10 -0500 Subject: [PATCH] last bit settled I have the last bit of breakout issue settled with some advice from steve. It is ready for layout review but I need to test it on other browsers still. --- css/app.css | 4 ++-- scss/_main.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/css/app.css b/css/app.css index 11e9989..6bf0d87 100644 --- a/css/app.css +++ b/css/app.css @@ -6479,7 +6479,7 @@ main { margin-top: -236px; } @media only screen and (max-width: 40em) { main.page-inside { - margin-top: -33%; } } + margin-top: 0; } } main.page-inside #tagline { background: #eff0ec; margin-bottom: 25px; @@ -6530,7 +6530,7 @@ main { overflow: hidden; } @media only screen and (max-width: 40em) { .feature-img { - top: -205px; } } + top: 0; } } #main-content { padding-bottom: 40px; } diff --git a/scss/_main.scss b/scss/_main.scss index c40d581..8c51488 100644 --- a/scss/_main.scss +++ b/scss/_main.scss @@ -28,7 +28,7 @@ main { // margin-top: -205px; // } @media #{$small-only}{ - margin-top: -33%; + margin-top: 0; } #tagline { background: $light-green; @@ -87,7 +87,7 @@ main { max-height: 500px; overflow: hidden; @media #{$small-only}{ - top: -205px; + top: 0; } } #main-content { -- 2.17.1