diff options
author | Phil Hughes <me@iamphill.com> | 2016-09-14 20:05:52 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-09-15 08:46:21 +0100 |
commit | c65e903a9e7d90be3db072fb9d9fd2e4d6c76a74 (patch) | |
tree | aeed572320895025da35dad7384b16b1d92a369b /app/assets/stylesheets | |
parent | d9e86e796a42efb5f60eff61907ce4b7834295a4 (diff) | |
download | gitlab-ce-c65e903a9e7d90be3db072fb9d9fd2e4d6c76a74.tar.gz |
Fixed height issue on smaller screens
Fixed IE width issue
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r-- | app/assets/stylesheets/pages/boards.scss | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss index f8659489ddf..3df7976dda4 100644 --- a/app/assets/stylesheets/pages/boards.scss +++ b/app/assets/stylesheets/pages/boards.scss @@ -54,6 +54,7 @@ .boards-list { height: calc(100vh - 152px); + width: 100%; padding-top: 25px; padding-bottom: 25px; padding-right: ($gl-padding / 2); @@ -63,6 +64,7 @@ @media (min-width: $screen-sm-min) { height: calc(100vh - 220px); + min-height: 475px; } } |