From 92c9dcb013018c929f89f4f58756ba03ada8760e Mon Sep 17 00:00:00 2001 From: timotheegoguely Date: Wed, 20 Nov 2024 15:22:35 +0100 Subject: [PATCH] Fix kanban height --- src/views/Kanban.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Kanban.vue b/src/views/Kanban.vue index 1c50639..0c0695f 100644 --- a/src/views/Kanban.vue +++ b/src/views/Kanban.vue @@ -151,6 +151,6 @@ function openDialog(targetStepSlug) { overflow-x: auto; margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); - height: calc(100vh - var(--gutter) * 2 - var(--header-height) - 2.25rem); + height: calc(100vh - var(--gutter) * 2 - var(--header-height) - 3.25rem); }