diff options
-rw-r--r-- | app/assets/stylesheets/responsive/_header_layout.scss | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/assets/stylesheets/responsive/_header_layout.scss b/app/assets/stylesheets/responsive/_header_layout.scss index 996815f3a..404b31a9b 100644 --- a/app/assets/stylesheets/responsive/_header_layout.scss +++ b/app/assets/stylesheets/responsive/_header_layout.scss @@ -16,6 +16,7 @@ // …and show a button to reveal them .rsp_menu_button{ @include grid-column(4); + padding: 1em 1em 0 1em; float: right; a { text-align: right; @@ -31,8 +32,11 @@ // Squeeze the logo up on small screens to make room for the button #logo_wrapper{ @include grid-column(4); - margin-bottom: 1em; - padding: 1em; + padding: 1em 1em 0 1em; + @media( min-width: $main_menu-mobile_menu_cutoff ){ + padding: 1em; + margin-bottom: 1em; + } } &:target{ |