Commit ff849d20 by AlasdairSwan

Fixes bug with app links in new footer

parent 4a93d531
...@@ -80,12 +80,15 @@ footer#footer-edx-v3 { ...@@ -80,12 +80,15 @@ footer#footer-edx-v3 {
} }
} }
.social-media-links,
.mobile-app-links { .mobile-app-links {
@include clearfix(); @include clearfix();
position: relative;
width: 260px;
height: 42px;
} }
.social-media-links { .social-media-links {
@include clearfix();
margin-bottom: 30px; margin-bottom: 30px;
} }
...@@ -119,17 +122,20 @@ footer#footer-edx-v3 { ...@@ -119,17 +122,20 @@ footer#footer-edx-v3 {
} }
.app-link { .app-link {
@include float(left); position: absolute;
@include margin-right(10px); top: 0;
position: relative;
display: inline-block; &:first-of-type {
@include left(0);
}
&:last-of-type { &:last-of-type {
@include margin-right(0); @include right(0);
} }
img { img {
height: 40px; height: 40px;
max-width: 200px;
} }
} }
......
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