Only display footer in column if space's available

Otherwise it would cause an overflow e.g. on mobile
This commit is contained in:
bopol 2022-09-03 21:22:20 +02:00 committed by Cadence Ember
parent 20a4043889
commit 8a72003170
Signed by: cadence
GPG Key ID: BC1C2C61CF521B17
1 changed files with 5 additions and 1 deletions

View File

@ -62,7 +62,11 @@ p {
}
.custom-footer__cols {
display: grid;
grid-template-columns: 1fr 1fr;
}
@media (min-width: 560px) {
.custom-footer__cols {
grid-template-columns: 1fr 1fr;
}
}
.my-logo {
margin-bottom: 8px;