From 08629bba043f63f8cbaa8967563b00c7255053f3 Mon Sep 17 00:00:00 2001 From: Sven van de Scheur Date: Thu, 17 Oct 2024 14:36:12 +0200 Subject: [PATCH] :bug: - fix: fix minor bugs in Kanban component --- src/components/data/kanban/kanban.tsx | 9 ++++++++- src/components/toolbar/toolbar.scss | 4 ++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/components/data/kanban/kanban.tsx b/src/components/data/kanban/kanban.tsx index d7bc11e3..fab18177 100644 --- a/src/components/data/kanban/kanban.tsx +++ b/src/components/data/kanban/kanban.tsx @@ -230,7 +230,14 @@ export const Kanban: React.FC = ({

{title}

)} - {toolbarProps && } + {toolbarProps && ( + + )} {fieldsetsState.map((fieldset, index) => ( diff --git a/src/components/toolbar/toolbar.scss b/src/components/toolbar/toolbar.scss index 9d5a7d1e..42b86cdd 100644 --- a/src/components/toolbar/toolbar.scss +++ b/src/components/toolbar/toolbar.scss @@ -131,6 +131,10 @@ width: 100%; } + &--direction-horizontal .mykn-p:has(+ .mykn-p) { + margin-block-end: 0; + } + &--direction-vertical &__spacer { height: 100%; }