From b25af5cf58300e80ee63db4f0cc42663fc5cf375 Mon Sep 17 00:00:00 2001 From: Emir Karabeg Date: Thu, 30 Jan 2025 12:28:03 -0800 Subject: [PATCH] Changed hover over to ring instead of outline for short input --- .../components/sub-block/components/short-input.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/w/components/workflow-block/components/sub-block/components/short-input.tsx b/app/w/components/workflow-block/components/sub-block/components/short-input.tsx index 2f1c12cf35..1b0fff652e 100644 --- a/app/w/components/workflow-block/components/sub-block/components/short-input.tsx +++ b/app/w/components/workflow-block/components/sub-block/components/short-input.tsx @@ -78,7 +78,8 @@ export function ShortInput({ ref={inputRef} className={cn( 'w-full placeholder:text-muted-foreground/50 allow-scroll', - isConnecting && 'border-blue-500' + isConnecting && + 'focus-visible:ring-blue-500 ring-2 ring-blue-500 ring-offset-2' )} placeholder={placeholder ?? ''} type="text"