From a0414c54e7d39c9bf681459c9113161f368b2840 Mon Sep 17 00:00:00 2001 From: Serghei Mihai Date: Tue, 19 Dec 2017 14:08:25 +0100 Subject: [PATCH] reduce panels width in order to keep their alignment in IE 11 (#20538) --- welco/static/css/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/welco/static/css/style.css b/welco/static/css/style.css index 6fd9b72..b3d26d8 100644 --- a/welco/static/css/style.css +++ b/welco/static/css/style.css @@ -48,8 +48,8 @@ body.welco-home div#content { position: relative; } -.panels-2 .cell { width: calc(100% / 2); } -.panels-3 .cell { width: calc(100% / 3); } +.panels-2 .cell { width: calc(99.9% / 2); } +.panels-3 .cell { width: calc(99.9% / 3); } #content.big-top .cell { height: 5%; -- 2.15.1