Fixed bottom padding on small screens

This commit is contained in:
Andre Beging
2020-03-01 14:46:57 +01:00
parent f56a46eb52
commit 9cca3b3f38
3 changed files with 11 additions and 4 deletions

View File

@@ -8115,6 +8115,11 @@ p {
margin: auto;
padding-bottom: 300px;
}
@media screen and (max-width: 768px) {
#content {
padding-bottom: 380px;
}
}
hr {
color: maroon;

File diff suppressed because one or more lines are too long