diff options
author | Mike Greiling <mike@pixelcog.com> | 2016-08-31 22:55:56 -0500 |
---|---|---|
committer | Mike Greiling <mike@pixelcog.com> | 2016-08-31 22:55:56 -0500 |
commit | cf1174c673ce4244236b64f25e34f1a609552ede (patch) | |
tree | f1096cdfd0bca6453c6a85ead88b4b8080747bc5 /app | |
parent | 523002e40f79ad85ffa6ce74b8ff405c17429cb6 (diff) | |
download | gitlab-ce-cf1174c673ce4244236b64f25e34f1a609552ede.tar.gz |
add extra viewport breakpoint for project name width21506-fix-title-dropdown-chevron
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/framework/header.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/header.scss b/app/assets/stylesheets/framework/header.scss index d3e787937e6..1036219172e 100644 --- a/app/assets/stylesheets/framework/header.scss +++ b/app/assets/stylesheets/framework/header.scss @@ -150,7 +150,11 @@ header { vertical-align: top; white-space: nowrap; - @media (max-width: $screen-sm-max) { + @media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) { + max-width: 300px; + } + + @media (max-width: $screen-xs-max) { max-width: 190px; } |