Skip to content

Commit eb18566

Browse files
committed
fix(scss): floating footer ie11 issue
1 parent 7489ecb commit eb18566

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/scss/_ie-fix.scss

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
html body .app.flex-row.align-items-center {
22
height: 100vh;
33
}
4+
5+
// ie11 floating footer temp fix, react only
6+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
7+
#root {
8+
display: flex;
9+
flex-direction: column;
10+
}
11+
}

0 commit comments

Comments
 (0)