From 5726d7718dba3982b209147c2d6c4c86e8672a30 Mon Sep 17 00:00:00 2001 From: David Taylor Date: Thu, 12 Mar 2020 13:44:22 +0000 Subject: [PATCH] Add basic support for IE11 User cards will be shown in a single column --- common/common.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/common/common.scss b/common/common.scss index 72d938b..e8d8756 100644 --- a/common/common.scss +++ b/common/common.scss @@ -26,6 +26,18 @@ @media only screen and (min-width: 500px) { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); } + + .user-card-container{ + margin: 60px 20px; + } + + @supports (display: grid) { + display: grid; + + .user-card-container{ + margin: 0; + } + } grid-gap: 60px 20px; margin-top: 60px;