From ec33b46d3194e2b293f6fd401312f3c71ae53d94 Mon Sep 17 00:00:00 2001 From: Kris Date: Mon, 8 Oct 2018 11:55:54 -0400 Subject: [PATCH] IE11 doesn't support nested calc --- app/assets/stylesheets/desktop/topic-post.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/desktop/topic-post.scss b/app/assets/stylesheets/desktop/topic-post.scss index dfb19ab43c..bb00846e76 100644 --- a/app/assets/stylesheets/desktop/topic-post.scss +++ b/app/assets/stylesheets/desktop/topic-post.scss @@ -641,7 +641,7 @@ $topic-body-width: 690px; $topic-body-width-padding: 11px; $topic-avatar-width: 45px; .topic-body { - width: calc(#{$topic-body-width} + calc(#{$topic-body-width-padding} * 2)); + width: calc(#{$topic-body-width} + (#{$topic-body-width-padding} * 2)); float: left; position: relative; z-index: z("base");