Fix bottom padding on kanban
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2020-08-11 20:47:27 +02:00
parent 282c86f19a
commit d95571309b
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 11 additions and 4 deletions

View File

@ -216,10 +216,13 @@
</div>
<div
class="app-content"
:class="{
'fullpage-overlay': fullpage,
'is-menu-enabled': menuActive,
}"
:class="[
{
'fullpage-overlay': fullpage,
'is-menu-enabled': menuActive,
},
$route.name,
]"
>
<a class="mobile-overlay" v-if="menuActive" @click="menuActive = false"></a>
<transition name="fade">

View File

@ -4,6 +4,10 @@ $ease-out: all .3s cubic-bezier(0.23, 1, 0.32, 1);
$crazy-height-calculation: '100vh - 4.5rem - 1.5rem - 1em - 1.5em - 8px';
.app-content.list\.kanban {
padding-bottom: 0;
}
.kanban {
display: flex;