Fix bug with flexbox in IE11
This commit is contained in:
parent
9ffa13539f
commit
2b3c7fce00
1 changed files with 2 additions and 3 deletions
|
|
@ -1,7 +1,4 @@
|
||||||
/* --- General --- */
|
/* --- General --- */
|
||||||
html, body {
|
|
||||||
height: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'Lora', 'Times New Roman', serif;
|
font-family: 'Lora', 'Times New Roman', serif;
|
||||||
|
|
@ -11,9 +8,11 @@ body {
|
||||||
background: #FFF;
|
background: #FFF;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-flow: column;
|
flex-flow: column;
|
||||||
|
height: 100vh;
|
||||||
}
|
}
|
||||||
.container[role=main] {
|
.container[role=main] {
|
||||||
margin-bottom:50px;
|
margin-bottom:50px;
|
||||||
|
flex: 1 0 auto;
|
||||||
}
|
}
|
||||||
p {
|
p {
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue