Only display footer in column if space's available #1

Merged
cadence merged 1 commits from bopol/breezewiki:mobile-footer into main 2022-09-04 13:35:28 +00:00
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;