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
710d7d6faa
1 changed files with 5 additions and 1 deletions
|
@ -62,8 +62,12 @@ p {
|
|||
}
|
||||
.custom-footer__cols {
|
||||
display: grid;
|
||||
}
|
||||
@media (min-width: 560px) {
|
||||
.custom-footer__cols {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
}
|
||||
.my-logo {
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue