Fix styles for responsive footer

This commit is contained in:
Mathias Schopmans
2017-04-03 16:56:40 +02:00
parent b5b20584ef
commit 6c2efdd724
5 changed files with 34 additions and 16 deletions

View File

@@ -25,4 +25,15 @@
&.is-hidden {
opacity: 0;
}
@media (--until-sm) {
&--footer {
display: block;
text-align: center;
}
}
@media (--until-xl) {
margin: 15px 0 0;
}
}

View File

@@ -11,20 +11,25 @@
color: var(--color-gray-normal);
}
& .footer-social {
display: flex;
flex-direction: row;
justify-content: flex-end;
@media (--until-sm) {
flex-direction: column;
align-items: center;
& .footer-social-label {
margin: 0 10px 0 0;
}
margin: 20px 0 0;
}
}
.footer-end-left {
flex-direction: column;
align-items: flex-start;
}
}
.footer-social {
display: flex;
flex-direction: row;
justify-content: flex-end;
align-items: center;
&__label {
margin: 0 10px 0 0;
}
}