diff options
author | Luke Bacon <luke@equivalentideas.com> | 2015-04-01 14:55:38 +1100 |
---|---|---|
committer | Luke Bacon <luke@equivalentideas.com> | 2015-04-01 14:59:30 +1100 |
commit | 2142de5db3604e590ea5fecaa29a5602d19e4538 (patch) | |
tree | d3a17d5c2e8416ab8fbe854c17de340093f347fa | |
parent | b7610fc46adf3be67486c1fe061d1da6bd3184dc (diff) |
fix alignment of header search on wide screens
the added padding-top was causing the form to
sit too low on wide screen.
This removes padding added to the form for
the small screen version of the menu, in
commit cebea2496b3cd8e5afe08bbe2cdabb818993fa1d
-rw-r--r-- | app/assets/stylesheets/responsive/_header_layout.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/stylesheets/responsive/_header_layout.scss b/app/assets/stylesheets/responsive/_header_layout.scss index a1f4ab9de..42888ca38 100644 --- a/app/assets/stylesheets/responsive/_header_layout.scss +++ b/app/assets/stylesheets/responsive/_header_layout.scss @@ -135,6 +135,9 @@ @include lte-ie7 { display: inline; } + @include respond-min( $main_menu-mobile_menu_cutoff ){ + padding-top: 0; + } } input{ @include grid-column($columns:9); |