aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2014-05-12 16:48:26 +0100
committerLouise Crow <louise.crow@gmail.com>2014-05-15 11:26:03 +0100
commit113712b80cfe3c35bd425c118b2daf170b0fb472 (patch)
tree34b2613b8299c2418411e7f7b34969417342c0e9
parent71069fdc364e46db3f16935341eb7b07fa0037ce (diff)
Remove top border on small screens, fix logo size.
-rw-r--r--assets/stylesheets/responsive/custom.css7
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;
+ }
}
}