Fix login and overview pages in Safari
Bootstrap 4 columns in Safari are not working as expected,
causing issues with the layout on the login and overview
pages. Small CSS change resolves issue, see
https://github.com/twbs/bootstrap/issues/24219
Tested: Layout appears to be fixed using Safari. No pages
are affected visually by the change when using Chrome or
Firefox.
Change-Id: I79bf6ef3734703e4f610ee7f95b75625538761c2
Signed-off-by: beccabroek <beccabroek@gmail.com>
diff --git a/app/common/styles/base/foundation.scss b/app/common/styles/base/foundation.scss
index a422dec..1749d09 100644
--- a/app/common/styles/base/foundation.scss
+++ b/app/common/styles/base/foundation.scss
@@ -795,7 +795,7 @@
margin-right: auto;
margin-left: auto; }
.row::before, .row::after {
- display: table;
+ display: inline-block;
content: ' '; }
.row::after {
clear: both; }