Shrunk the footer and brought it closer to content on small screens

This commit is contained in:
Ethan N. Paul 2018-02-06 08:13:14 -05:00
parent f2370a7d53
commit ff1cb77e95
1 changed files with 8 additions and 1 deletions

View File

@ -822,10 +822,17 @@ body.mobile-nav-active #mobile-nav-toggle {
--------------------------------------------------------------*/
#footer {
background: black;
padding: 30px 0;
padding-top: 30px;
padding-bottom: 10px;
color: #fff;
}
@media (max-width: 768px) {
#footer {
padding-top: 0px;
}
}
#footer .copyright {
text-align: center;
}