diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-02-08 09:50:30 -0600 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-02-10 15:09:08 -0600 |
commit | 7cbceef0a8290078eb2feb3956aa311628552229 (patch) | |
tree | 5d96343b901376de912b5b0707b2d68a756f3296 | |
parent | 485ef9900b7a7e7534b3d20f5f9bef02dbc9b13b (diff) | |
download | gitlab-ce-7cbceef0a8290078eb2feb3956aa311628552229.tar.gz |
Remove right padding from navbar-collapse on large screens
-rw-r--r-- | app/assets/stylesheets/framework/header.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/header.scss b/app/assets/stylesheets/framework/header.scss index 731ce57c245..34e010e0e8a 100644 --- a/app/assets/stylesheets/framework/header.scss +++ b/app/assets/stylesheets/framework/header.scss @@ -222,6 +222,10 @@ header { float: right; border-top: none; + @media (min-width: $screen-md-min) { + padding: 0; + } + @media (max-width: $screen-xs-max) { float: none; } |