From fd153dc39e952d489bef5fbe044c2e8f8407a9a4 Mon Sep 17 00:00:00 2001 From: Andrew Croce Date: Thu, 27 Sep 2018 13:32:13 -0400 Subject: [PATCH] Fix overflowing layout issue in IE. --- styles/components/_global_layout.scss | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/styles/components/_global_layout.scss b/styles/components/_global_layout.scss index f4b2aa12..1394d789 100644 --- a/styles/components/_global_layout.scss +++ b/styles/components/_global_layout.scss @@ -24,25 +24,10 @@ max-width: $site-max-width; overflow-x: hidden; flex-grow: 1; - - @include ie-only { - max-width: 85%; - } + -ms-flex-negative: 1; @include media($medium-screen) { margin: $gap * 2; } - - @include media($large-screen) { - @include ie-only { - max-width: 80%; - } - } - - @include media($xlarge-screen) { - @include ie-only { - max-width: $site-max-width; - } - } } }