summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2016-08-31 22:55:56 -0500
committerMike Greiling <mike@pixelcog.com>2016-08-31 22:55:56 -0500
commitcf1174c673ce4244236b64f25e34f1a609552ede (patch)
treef1096cdfd0bca6453c6a85ead88b4b8080747bc5
parent523002e40f79ad85ffa6ce74b8ff405c17429cb6 (diff)
downloadgitlab-ce-21506-fix-title-dropdown-chevron.tar.gz
add extra viewport breakpoint for project name width21506-fix-title-dropdown-chevron
-rw-r--r--app/assets/stylesheets/framework/header.scss6
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;
}