aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2014-06-03 17:02:20 +0100
committerLouise Crow <louise.crow@gmail.com>2014-06-04 11:32:55 +0100
commit0121c44ac2ec3bbaf8a957045cb67588e9cfadca (patch)
tree05d770a0b30ba572448a143bdf1848c498e1cfd0
parent53ca95eed4b9662dc2d63182171bdb956ff42578 (diff)
Add some spacing under the logo for IE7
To prevent the login block getting pushed down.
-rw-r--r--assets/stylesheets/responsive/custom.scss17
1 files changed, 11 insertions, 6 deletions
diff --git a/assets/stylesheets/responsive/custom.scss b/assets/stylesheets/responsive/custom.scss
index fffb8e0..4a09b2d 100644
--- a/assets/stylesheets/responsive/custom.scss
+++ b/assets/stylesheets/responsive/custom.scss
@@ -371,13 +371,18 @@ a.link_button_green_large {
/* Pad evenly top and bottom on smaller devices */
#logo_wrapper{
- @media(max-width: $main_menu-mobile_menu_cutoff ){
- padding: 0.5em 0 0.5em 0.9375em;
- img {
- height: 30px;
- }
- }
+ @include respond-min( $main_menu-mobile_menu_cutoff ){
+ @include lte-ie7 {
+ padding-bottom: 1.5em;
+ }
+ }
+ @media(max-width: $main_menu-mobile_menu_cutoff ){
+ padding: 0.5em 0 0.5em 0.9375em;
+ img {
+ height: 30px;
+ }
+ }
}
}