From 2bea46c45545f08023568b1382912305f3f1edc9 Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Wed, 16 Jan 2019 10:05:05 -0500 Subject: [PATCH] Set width to fix IE10 rendering on TO get started When on a large screen, ensure the next steps don't take up more than 1/3 of the container width. --- styles/sections/_task_order.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss index c8d12f4f..edf3c34c 100644 --- a/styles/sections/_task_order.scss +++ b/styles/sections/_task_order.scss @@ -24,6 +24,18 @@ @include media($large-screen) { @include grid-row; } + + @include ie-only { + width: 100%; + max-width: 100%; + + @include media($large-screen) { + .col { + max-width: 33%; + } + } + } + } }