12 lines
248 B
SCSS
12 lines
248 B
SCSS
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;
|
|
}
|
|
}
|