fix: increase footer margin on mobile #17

Merged
vrifox merged 1 commit from fix-footer-on-mobile into main 2025-06-16 15:02:22 +02:00

View file

@ -1,10 +1,23 @@
footer {
color: var(--text-accent-150);
grid-area: footer;
margin: 1em auto;
text-align: center;
font-size: 1rem;
@media (max-width: 1140px) {
margin-top: 1em;
margin-bottom: 8em;
margin-left: auto;
margin-right: auto;
}
@media (min-width: 1141px) {
margin-top: 1em;
margin-bottom: 1em;
margin-left: auto;
margin-right: auto;
}
p {
margin: .25em;
@ -29,4 +42,4 @@ footer {
}
}
}
}
}