armentieres: fix layout of link-list in footer-bottom (#70745)

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

View File

@ -40,21 +40,36 @@
}
.arm-footer-bottom {
padding: 1rem;
background: $gray;
color: white;
.menu-cell {
text-align: center;
li {
display: inline-block;
border: none;
a {
border-radius: 0;
.link-list-cell {
ul {
height: 40px;
display: flex;
justify-content: center;
align-items: center;
@media($max-mobile-viewport) {
height: 155px;
flex-direction: column;
}
text-align: center;
li {
display: inline-block;
border: none;
color: white;
padding: 0.5rem 2rem;
&:hover {
a {
padding: 0.5rem 2rem;
border-radius: 0;
border: none;
color: white;
font-size: $fz-small;
&:hover {
color: white;
}
}
}
}