diff options
author | Phil Hughes <me@iamphill.com> | 2017-11-03 08:48:51 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-11-03 08:48:51 +0000 |
commit | 78ef301c3dfae273bf034a9ffdfa67e2ff7391aa (patch) | |
tree | c13b144a071a94a9d860470ceff763229150d49c | |
parent | 96e8f3c128da33747921f6f1d5357bb208e91fe4 (diff) | |
parent | 98b259df226485e4a2ffc3fa3cacfbd11dc80c2e (diff) | |
download | gitlab-ce-78ef301c3dfae273bf034a9ffdfa67e2ff7391aa.tar.gz |
Merge branch '39684-issue-boards-space' into 'master'
Remove white space at bottom of issue boards
Closes #39684
See merge request gitlab-org/gitlab-ce!15166
-rw-r--r-- | app/assets/stylesheets/pages/boards.scss | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss index 91296b354a7..278ec16bcd9 100644 --- a/app/assets/stylesheets/pages/boards.scss +++ b/app/assets/stylesheets/pages/boards.scss @@ -72,7 +72,7 @@ } .boards-list { - height: calc(100vh - 152px); + height: calc(100vh - 105px); width: 100%; padding-top: 25px; padding-bottom: 25px; @@ -81,10 +81,14 @@ overflow-x: scroll; white-space: nowrap; - @media (min-width: $screen-sm-min) { + @media (min-width: $screen-sm-min) and (max-width: $screen-sm-max) { + height: calc(100vh - 90px); + } + + @media (min-width: $screen-md-min) { height: 475px; // Needed for PhantomJS // scss-lint:disable DuplicateProperty - height: calc(100vh - 222px); + height: calc(100vh - 160px); // scss-lint:enable DuplicateProperty min-height: 475px; } |