fix: kanban last card cut off
This commit is contained in:
parent
f91c9bf467
commit
c42b5a5cc7
1 changed files with 5 additions and 1 deletions
|
|
@ -32,7 +32,7 @@
|
|||
border-radius: var(--border-radius);
|
||||
padding: var(--padding-md);
|
||||
min-height: calc(100vh - 250px);
|
||||
max-height: calc(75vh - 10px);
|
||||
max-height: calc(100vh - (var(--navbar-height) + var(--page-bottom-margin) + 80px));
|
||||
|
||||
.add-card {
|
||||
@include flex(flex, center, center, null);
|
||||
|
|
@ -172,6 +172,10 @@
|
|||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
&:last-child .kanban-card {
|
||||
margin-bottom: var(--margin-xl);
|
||||
}
|
||||
}
|
||||
|
||||
.kanban-card:hover,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue