fix footer padding

This commit is contained in:
outfoxxed 2024-11-09 04:30:27 -08:00
parent f1d3b5e162
commit f62d148b4e
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E
5 changed files with 25 additions and 7 deletions

View file

@ -148,7 +148,7 @@ footer {
font-size: 0.9rem;
display: flex;
justify-content: space-between;
padding: 1rem;
padding: 1rem 2rem;
overflow: hidden;
flex-shrink: 0;
background: hsl(var(--footer-bkg));
@ -231,8 +231,12 @@ footer {
}
@media not (min-width: 40rem) {
footer .credits > a {
padding: 0.2rem;
footer {
padding-inline: 0.75rem;
& .credits > a {
padding: 0.2rem 0;
}
}
}