I'm trying to use this sticky footer:
http://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/
body{
display: flex;
min-height: 100vh;
flex-direction: column;
}
.content{
flex: 1;
}
But it messes up the rendering at the < 768px widths.
Any simple css fix to get it work for all resolutions?