diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-05-12 16:48:26 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-05-15 11:26:03 +0100 |
commit | 113712b80cfe3c35bd425c118b2daf170b0fb472 (patch) | |
tree | 34b2613b8299c2418411e7f7b34969417342c0e9 | |
parent | 71069fdc364e46db3f16935341eb7b07fa0037ce (diff) |
Remove top border on small screens, fix logo size.
-rw-r--r-- | assets/stylesheets/responsive/custom.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/assets/stylesheets/responsive/custom.css b/assets/stylesheets/responsive/custom.css index 9c29b87..160c83d 100644 --- a/assets/stylesheets/responsive/custom.css +++ b/assets/stylesheets/responsive/custom.css @@ -335,7 +335,9 @@ a.link_button_green_large { #banner { /* locale border */ - border-top: 4px solid $locale-bg; + @include respond-min( $main_menu-mobile_menu_cutoff ){ + border-top: 4px solid $locale-bg; + } /* Hide the greeting on smaller devices */ .greeting { @@ -366,6 +368,9 @@ a.link_button_green_large { #logo_wrapper{ @media(max-width: $main_menu-mobile_menu_cutoff ){ padding: 0.5em 0 0.5em 0.9375em; + img { + height: 30px; + } } } |