From a8e9430196cceb01fee260728efb0191d322107c Mon Sep 17 00:00:00 2001 From: Patrick Smith Date: Wed, 13 Feb 2019 11:13:00 -0500 Subject: [PATCH] Fix text wrapping issue in IE10 --- styles/sections/_task_order.scss | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/styles/sections/_task_order.scss b/styles/sections/_task_order.scss index aa4da347..25f7e780 100644 --- a/styles/sections/_task_order.scss +++ b/styles/sections/_task_order.scss @@ -177,8 +177,13 @@ } } - .task-order-next-steps__description { - font-style: italic; + .task-order-next-steps__text { + display: flex; + .task-order-next-steps__heading { + display: block; + max-width: 100%; + flex-shrink: 1; + } } } }