[fix #1042] keep footer only for the landing

This commit is contained in:
Simon Lehericey 2017-12-06 16:10:01 +01:00
parent ff1fa1df3c
commit 4014912ea4
4 changed files with 14 additions and 5 deletions

View file

@ -5,3 +5,5 @@ $default-padding: 2 * $default-spacer;
$footer-height: 267px;
$footer-height-mobile: 531px;
$small-footer-height: 2 * $default-padding;

View file

@ -15,11 +15,15 @@ select {
.page-wrapper {
position: relative;
padding-bottom: $footer-height;
padding-bottom: $small-footer-height;
min-height: 100%;
@media (max-width: 1000px) {
padding-bottom: $footer-height-mobile;
&.with-footer {
padding-bottom: $footer-height;
@media (max-width: 1000px) {
padding-bottom: $footer-height-mobile;
}
}
}