Merge pull request #4561 from consul/ie_flex

Fix footer overlap on Internet Explorer 11
This commit is contained in:
Javi Martín
2021-07-02 13:50:06 +02:00
committed by GitHub
3 changed files with 9 additions and 4 deletions

View File

@@ -39,17 +39,21 @@ html {
html, html,
body { body {
height: 100%;
margin: 0; margin: 0;
} }
html {
height: 100%;
}
body { body {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
font-size: $base-font-size; font-size: $base-font-size;
min-height: 100%;
> .wrapper { > .wrapper {
flex: 1; flex-grow: 1;
} }
} }

View File

@@ -1,11 +1,12 @@
@mixin admin-layout { @mixin admin-layout {
height: 100%;
> header { > header {
margin-bottom: 0; margin-bottom: 0;
} }
> .menu-and-content { > .menu-and-content {
flex: 1; flex-grow: 1;
} }
} }

View File

@@ -17,7 +17,7 @@
flex-direction: column; flex-direction: column;
.feed-content { .feed-content {
flex: 1; flex-grow: 1;
} }
} }
} }