fix(scss): floating footer ie11 issue

This commit is contained in:
xidedix 2018-11-21 17:12:08 +01:00
parent 7489ecb164
commit eb18566331

View File

@ -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;
}
}