diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:05:24 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-02 14:05:24 +0100 |
commit | 5c771cca3312dfd447ebe5e0b92ebe279ca1dd67 (patch) | |
tree | 228dd3f0b20b6df76bc4b20fd5e8b8faccce5db4 /app/assets | |
parent | 05224ae64ac769e3b9b06679d6e44fb120c879ef (diff) | |
download | gitlab-ce-5c771cca3312dfd447ebe5e0b92ebe279ca1dd67.tar.gz |
Fix logo height in signed-out header bar
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/framework/header.scss | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/header.scss b/app/assets/stylesheets/framework/header.scss index 02ea91602e8..4dbbb56104b 100644 --- a/app/assets/stylesheets/framework/header.scss +++ b/app/assets/stylesheets/framework/header.scss @@ -6,15 +6,17 @@ header { transition-duration: .3s; &.navbar-empty { + height: 58px; background: #FFF; border-bottom: 1px solid #EEE; .center-logo { - margin: 8px 0; + margin: 11px 0; text-align: center; - img { - height: 32px; + #tanuki-logo, img { + width: 36px; + height: 36px; } } } |