From 6be5b4fcc34d4995181d99692ff0a823387bc3e7 Mon Sep 17 00:00:00 2001 From: Ian Weller Date: Fri, 11 Dec 2015 10:58:25 -0500 Subject: [PATCH] footer issue handled --- css/app.css | 6 ++++++ scss/_main.scss | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/css/app.css b/css/app.css index cb22102..0b0272a 100644 --- a/css/app.css +++ b/css/app.css @@ -7031,6 +7031,9 @@ main.page-front { top: -200px; padding-bottom: 210px; position: relative; } + @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + main.page-front { + display: block; } } @media only screen and (min-width:40.063em) and (max-width:64em) { main.page-front { top: -100px; @@ -7065,6 +7068,9 @@ main.page-inside { background: rgba(255, 255, 255, 0.8); border-top-left-radius: 10px; border-top-right-radius: 10px; } + @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + main.page-inside { + display: block; } } @media only screen and (min-width:40.063em) and (max-width:64em) { main.page-inside { top: -250px; } } diff --git a/scss/_main.scss b/scss/_main.scss index 5d27ab7..ed967e0 100644 --- a/scss/_main.scss +++ b/scss/_main.scss @@ -6,6 +6,9 @@ main { top: -200px; padding-bottom: 210px; position: relative; + @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + display: block; + } @media #{$medium-only} { top: -100px; padding-bottom: 300px; @@ -43,6 +46,9 @@ main { background: rgba($white, 0.8); border-top-left-radius: 10px; border-top-right-radius: 10px; + @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + display: block; + } @media #{$medium-only} { top: -250px; } -- 2.17.1