footer issue handled
authorIan Weller <ian@gaslightmedia.com>
Fri, 11 Dec 2015 15:58:25 +0000 (10:58 -0500)
committerIan Weller <ian@gaslightmedia.com>
Fri, 11 Dec 2015 15:58:25 +0000 (10:58 -0500)
css/app.css
scss/_main.scss

index cb22102..0b0272a 100644 (file)
@@ -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; } }
index 5d27ab7..ed967e0 100644 (file)
@@ -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;
         }