summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-11-02 15:02:09 -0700
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-11-02 15:02:09 -0700
commit98b259df226485e4a2ffc3fa3cacfbd11dc80c2e (patch)
treeb7b9f0033933433bef96909960cb4e297bff5123
parent4154fa28e948532f15e00b0094e9fc83545a6865 (diff)
downloadgitlab-ce-39684-issue-boards-space.tar.gz
Remove white space at bottom of issue boards39684-issue-boards-space
-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;
}