Fix extra padding in footer 70px -> 60px

- because of var(--gap) decrease
- calc 10px less for mobile padding (24px - 14px = 10px)
This commit is contained in:
Aditya Telange 2021-06-11 17:58:36 +05:30
parent 6b55df1089
commit 726894ba29
No known key found for this signature in database
GPG Key ID: 82E844EF3DA99E77

View File

@ -22,6 +22,11 @@
.archive-year {
margin-top: 20px;
}
/* footer */
.footer {
padding: calc((var(--footer-height) - var(--gap) - 10px) / 2) var(--gap);
}
}
@media screen and (min-width: 768px) {