From b9d72ebbe2299b71c3e578dbed5ce16094b724a8 Mon Sep 17 00:00:00 2001 From: Kyle Fiedler Date: Fri, 17 Feb 2012 14:04:23 -0500 Subject: [PATCH] fix footer for mobile styles --- sass/index/_footer.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/sass/index/_footer.scss b/sass/index/_footer.scss index ee62b69426..5a6736ba42 100644 --- a/sass/index/_footer.scss +++ b/sass/index/_footer.scss @@ -8,6 +8,11 @@ footer { padding: lh() 0; 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 { color: #888; text-decoration: none; @@ -26,8 +31,13 @@ footer { ul { @include inline-block(); + @media screen and (max-width: 780px) { + margin-top: lh(); + } + li { @include inline-block(); + margin-bottom: 0; &:after { content: ' |';