From 144a6e41402f7e1f5267f02f23bf5c1430980ed0 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 14 Apr 2024 11:15:53 +0200 Subject: [PATCH] fix(kanban): do not add bottom spacing to view --- frontend/src/components/home/contentAuth.vue | 4 ++-- frontend/src/components/project/views/ProjectKanban.vue | 5 ----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/frontend/src/components/home/contentAuth.vue b/frontend/src/components/home/contentAuth.vue index c2c814b4b..6381431f0 100644 --- a/frontend/src/components/home/contentAuth.vue +++ b/frontend/src/components/home/contentAuth.vue @@ -162,7 +162,7 @@ projectStore.loadAllProjects() .app-content { z-index: 10; position: relative; - padding: 1.5rem 0.5rem 1rem; + padding: 1.5rem 0.5rem 0; // TODO refactor: DRY `transition-timing-function` with `./navigation.vue`. transition: margin-left $transition-duration; @@ -172,7 +172,7 @@ projectStore.loadAllProjects() } @media screen and (min-width: $tablet) { - padding: $navbar-height + 1.5rem 1.5rem 1rem 1.5rem; + padding: $navbar-height + 1.5rem 1.5rem 0 1.5rem; } &.is-menu-enabled { diff --git a/frontend/src/components/project/views/ProjectKanban.vue b/frontend/src/components/project/views/ProjectKanban.vue index 29b42b806..1df620d0b 100644 --- a/frontend/src/components/project/views/ProjectKanban.vue +++ b/frontend/src/components/project/views/ProjectKanban.vue @@ -773,11 +773,6 @@ $crazy-height-calculation: '100vh - 4.5rem - 1.5rem - 1rem - 1.5rem - 11px'; $crazy-height-calculation-tasks: '#{$crazy-height-calculation} - 1rem - 2.5rem - 2rem - #{$button-height} - 1rem'; $filter-container-height: '1rem - #{$switch-view-height}'; -// FIXME: -.app-content.project\.kanban, .app-content.task\.detail { - padding-bottom: 0 !important; -} - .kanban { overflow-x: auto; overflow-y: hidden;