Compare commits

...

1 commit

Author SHA1 Message Date
6e5513a31e Only display footer in column if space's available
Otherwise it would cause an overflow e.g. on mobile
2022-09-03 21:22:34 +02:00

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;