Merge pull request #395 from taigaio/issue/2417/kanban-height

Fix kanban height when empty.
stable
Alejandro 2015-03-12 13:52:17 +01:00
commit 92c8409143
2 changed files with 3 additions and 0 deletions

View File

@ -1,6 +1,7 @@
.kanban {
display: flex;
flex-direction: column;
height: 100vh;
max-height: 100vh;
header {
min-height: 70px;

View File

@ -9,6 +9,7 @@ $column-margin: 0 10px 0 0;
.kanban-table {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
width: 100%;
.vfold {
@ -97,6 +98,7 @@ $column-margin: 0 10px 0 0;
.kanban-table-body {
@extend %medium;
display: flex;
height: 100%;
overflow: hidden;
overflow-x: auto;
width: 100%;