Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-11-03 11:48:51 +0300
committerPhil Hughes <me@iamphill.com>2017-11-03 11:48:51 +0300
commit78ef301c3dfae273bf034a9ffdfa67e2ff7391aa (patch)
treec13b144a071a94a9d860470ceff763229150d49c /app
parent96e8f3c128da33747921f6f1d5357bb208e91fe4 (diff)
parent98b259df226485e4a2ffc3fa3cacfbd11dc80c2e (diff)
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
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/pages/boards.scss10
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;
}