forked from cadence/breezewiki
Only display footer in column if space's available
Otherwise it would cause an overflow e.g. on mobile
This commit is contained in:
parent
20a4043889
commit
8a72003170
1 changed files with 5 additions and 1 deletions
|
@ -62,7 +62,11 @@ p {
|
||||||
}
|
}
|
||||||
.custom-footer__cols {
|
.custom-footer__cols {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
}
|
||||||
|
@media (min-width: 560px) {
|
||||||
|
.custom-footer__cols {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.my-logo {
|
.my-logo {
|
||||||
margin-bottom: 8px;
|
margin-bottom: 8px;
|
||||||
|
|
Loading…
Reference in a new issue