Remove fixed footer at first media break (fixes #2454)

After the first media break (under 1200px), the footer is too long to
fit in a single line, taking up too much space in small screen devices.
This makes it so that it will stop being fixed at the bottom, freeing up
valuable screen real estate.
This commit is contained in:
Anderson Mesquita 2015-12-23 22:17:50 -05:00
parent 4874301615
commit 219ece22fc
2 changed files with 3 additions and 3 deletions

View File

@ -245,7 +245,7 @@ ul.three-columns li, ul.two-columns li {
/** Footer nav on small devices **/
@media (max-width: 991px) {
@media (max-width: 1199px) {
body {
padding-bottom: 0;
}

File diff suppressed because one or more lines are too long