diff --git a/src/scss/_ie-fix.scss b/src/scss/_ie-fix.scss index ce6bc77..a2ed71a 100644 --- a/src/scss/_ie-fix.scss +++ b/src/scss/_ie-fix.scss @@ -1,3 +1,11 @@ html body .app.flex-row.align-items-center { height: 100vh; } + +// ie11 floating footer temp fix, react only +@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { + #root { + display: flex; + flex-direction: column; + } +}