Commit 23557b98 by Chris Rodriguez

RTL-ifying footer

parent be7b3f29
...@@ -216,17 +216,17 @@ $edx-footer-bg-color: rgb(252,252,252); ...@@ -216,17 +216,17 @@ $edx-footer-bg-color: rgb(252,252,252);
} }
%edx-footer-section { %edx-footer-section {
float: left; @include float(left);
min-height: ($baseline*17.5); min-height: ($baseline*17.5);
margin-right: flex-gutter(); @include margin-right(flex-gutter());
border-right: 1px solid rgb(230, 230, 230); @include border-right(1px solid rgb(230, 230, 230));
padding-right: ($baseline*1.5); @include padding-right($baseline*1.5);
// CASE: last child // CASE: last child
&:last-child { &:last-child {
margin-right: 0; @include margin-right(0);
border: none; border: none;
padding-right: 0; @include padding-right(0);
} }
} }
......
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