diff options
| author | Connor Shea <connor.james.shea@gmail.com> | 2016-06-22 13:50:37 -0600 |
|---|---|---|
| committer | Connor Shea <connor.james.shea@gmail.com> | 2016-06-22 13:50:37 -0600 |
| commit | 2b1ee3f3d2245eb7f2d83607a3ed3c52c797e7fe (patch) | |
| tree | 9984621077415513c3563c76d92e197b02937cee | |
| parent | cb0283d218bd813777290ea72e08fb2fcc40ab47 (diff) | |
| download | gitlab-ce-fix-header-logo.tar.gz | |
Restrict header logo to 36px so it doesn't overflow.fix-header-logo
| -rw-r--r-- | app/assets/stylesheets/framework/header.scss | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/header.scss b/app/assets/stylesheets/framework/header.scss index a7bcb456560..649ecb6787b 100644 --- a/app/assets/stylesheets/framework/header.scss +++ b/app/assets/stylesheets/framework/header.scss @@ -132,6 +132,11 @@ header { transition-duration: .3s; z-index: 999; + svg, img { + height: 36px; + width: 36px; + } + &:hover { cursor: pointer; } |
