diff options
author | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-06-15 15:35:27 -0500 |
---|---|---|
committer | Annabel Dunstone <annabel.dunstone@gmail.com> | 2016-06-15 15:35:27 -0500 |
commit | 10ae756a8623170ef5ca924364231a4ce341ce23 (patch) | |
tree | 897099184a9593f1d406a672c1fbf7d752ab3b35 /app | |
parent | 5f22603b3f83e905df86d2e90b5803711497e21c (diff) | |
download | gitlab-ce-10ae756a8623170ef5ca924364231a4ce341ce23.tar.gz |
Fix project header alignment media query bugmedia-query-bug
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/pages/projects.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss index c85d23a31f0..855d86cb238 100644 --- a/app/assets/stylesheets/pages/projects.scss +++ b/app/assets/stylesheets/pages/projects.scss @@ -28,7 +28,7 @@ .container-fluid { position: relative; - @media (min-width: $screen-md-max) { + @media (min-width: $screen-lg-min) { .row { display: flex; -ms-flex-align: center; @@ -224,7 +224,7 @@ right: 16px; bottom: 0; - @media (max-width: $screen-lg-min) { + @media (max-width: $screen-md-max) { top: 0; } @@ -233,7 +233,7 @@ right: 0; bottom: 61px; - @media (max-width: $screen-lg-min) { + @media (max-width: $screen-md-max) { position: relative; bottom: 0; margin-right: 10px; |