Commit b9d72ebb by Kyle Fiedler

fix footer for mobile styles

parent fd6214ab
...@@ -8,6 +8,11 @@ footer { ...@@ -8,6 +8,11 @@ footer {
padding: lh() 0; padding: lh() 0;
background: url('/static/images/marketing/mit-logo.png') right center no-repeat; background: url('/static/images/marketing/mit-logo.png') right center no-repeat;
@media screen and (max-width: 780px) {
background-position: left bottom;
padding-bottom: lh(3);
}
a { a {
color: #888; color: #888;
text-decoration: none; text-decoration: none;
...@@ -26,8 +31,13 @@ footer { ...@@ -26,8 +31,13 @@ footer {
ul { ul {
@include inline-block(); @include inline-block();
@media screen and (max-width: 780px) {
margin-top: lh();
}
li { li {
@include inline-block(); @include inline-block();
margin-bottom: 0;
&:after { &:after {
content: ' |'; content: ' |';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment