fix(mobile): remove footer on mobile. Closes #2962

This commit is contained in:
Gabe Kangas 2023-04-27 15:35:21 -07:00
parent be3e6361f1
commit 8c26137791
No known key found for this signature in database
GPG Key ID: 4345B2060657F330

View File

@ -13,4 +13,12 @@
// this one is for fixed footer
margin-bottom: 30px;
}
@include screen(mobile) {
margin-bottom: 0px;
footer {
display: none;
}
}
}