Fix body height by changing CSS height property to min-height (#556)

This commit is contained in:
Limon Monte 2018-04-13 18:40:58 +03:00 committed by Joel Marcey
parent 86edbec1d0
commit 858b6f347f

View file

@ -49,7 +49,7 @@ body {
background: #f9f9f9; background: #f9f9f9;
color: #393939; color: #393939;
font: normal 16px/1.4em -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif; font: normal 16px/1.4em -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif;
height: 100vh; min-height: 100vh;
text-align: left; text-align: left;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility;
} }
@ -1064,7 +1064,7 @@ ul#languages li {
position: relative; position: relative;
left: 0; left: 0;
z-index: 99; z-index: 99;
height: 100%; min-height: 100%;
} }
.navPusher::after { .navPusher::after {
position: absolute; position: absolute;