armentieres: fix footer logos position (#70745)

This commit is contained in:
Corentin Sechet 2022-11-21 22:00:41 +01:00
parent 5ce84ff3ae
commit 178bb0a4dc
1 changed files with 14 additions and 1 deletions

View File

@ -1,5 +1,5 @@
#footer-wrapper {
padding: 3rem 1.5rem 0;
padding: 3rem 1.5rem;
#footer {
position: relative;
}
@ -60,3 +60,16 @@
}
}
}
// Custom classes
.arm-footer-logos {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
@media($max-mobile-viewport) {
flex-direction: row-reverse;
flex-wrap: wrap;
}
}