From e2c9415e1de80265bf2d013a2410af9716f6ff12 Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Wed, 6 Oct 2021 15:07:51 +0100 Subject: [PATCH] update icon padding and block background-color --- .../FlowChart/FlowChart.svelte | 42 +++++++------------ 1 file changed, 15 insertions(+), 27 deletions(-) diff --git a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowChart.svelte b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowChart.svelte index c05a103fac..fee8afd711 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowChart.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowChart.svelte @@ -4,9 +4,9 @@ import FlowItem from "./FlowItem.svelte" import TestDataModal from "./TestDataModal.svelte" import { flip } from "svelte/animate" - import { fade, fly } from "svelte/transition" + import { fly } from "svelte/transition" import { - Detail, + Heading, Icon, ActionButton, notifications, @@ -57,26 +57,24 @@
- {automation.name} -
- + {automation.name} +
+
- +
{ testDataModal.show() }} icon="MultipleCheck" - size="S">Run testRun test
@@ -84,16 +82,11 @@ {#each blocks as block, idx (block.id)}
- {#if idx !== blocks.length - 1} -
- -
- {/if}
{/each}
@@ -114,14 +107,6 @@