From 48718b17ff06e9704264fbae062b242cbafc2dcf Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 8 Feb 2024 20:04:22 +0100 Subject: [PATCH] fix: ai builder colors --- frontend/src/lib/components/copilot/FlowCopilotStatus.svelte | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/lib/components/copilot/FlowCopilotStatus.svelte b/frontend/src/lib/components/copilot/FlowCopilotStatus.svelte index b29e887535..0cdbf760b1 100644 --- a/frontend/src/lib/components/copilot/FlowCopilotStatus.svelte +++ b/frontend/src/lib/components/copilot/FlowCopilotStatus.svelte @@ -38,7 +38,7 @@ $currentStepStore !== undefined ? 'z-[901]' : '', copilotLoading || ($currentStepStore !== undefined && $currentStepStore !== 'Input') ? '' - : '!text-violet-800 !dark:text-violet-400' + : 'text-violet-800 dark:text-violet-400' )} on:click={() => { if (copilotLoading || ($currentStepStore !== undefined && $currentStepStore !== 'Input')) { @@ -125,7 +125,7 @@ startIcon={{ icon: Wand2 }} - btnClasses="text-violet-800 dark:text-violet-400" + btnClasses="text-violet-800 dark:text-violet-500" color={'light'} variant={'border'} nonCaptureEvent