Added flex-wrap to footer

This commit is contained in:
Roxie Gibson 2020-02-24 11:13:10 +00:00
parent 48e654008e
commit 8cdacd0901
Signed by untrusted user: roxxers
GPG Key ID: 5D0140EDEE123F4D
1 changed files with 5 additions and 3 deletions

View File

@ -187,6 +187,8 @@ body.is-mobile {
.row {
display: flex;
margin: 0 10%;
flex-wrap: wrap;
justify-content: space-evenly;
}
.column {
@ -194,7 +196,7 @@ body.is-mobile {
}
.cotech-box {
padding-bottom: 1em;;
padding-bottom: 1em;
}
.cotech-text {
@ -207,11 +209,11 @@ body.is-mobile {
}
@include breakpoint(medium) {
@include padding(4em, 3em);
@include padding(4em, 0em);
}
@include breakpoint(small) {
@include padding(3em, 2em);
@include padding(3em, 0em);
}
}