From 75f1b4cfffe45102036757a24622dc2ee64ee444 Mon Sep 17 00:00:00 2001 From: Marco Beretta <81851188+berry-13@users.noreply.github.com> Date: Tue, 28 Oct 2025 20:29:09 +0100 Subject: [PATCH] refactor: Update button styles and transition durations for improved UI responsiveness --- client/src/components/Artifacts/Thinking.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/components/Artifacts/Thinking.tsx b/client/src/components/Artifacts/Thinking.tsx index 5890398466..08e241c6e8 100644 --- a/client/src/components/Artifacts/Thinking.tsx +++ b/client/src/components/Artifacts/Thinking.tsx @@ -7,8 +7,8 @@ import { cn } from '~/utils'; import store from '~/store'; const BUTTON_STYLES = { - base: '-sring group mt-3 flex w-fit items-center justify-center rounded-xl bg-surface-tertiary px-3 py-2 text-xs leading-[18px] transition-all duration-300 hover:bg-surface-secondary active:scale-95 animate-thinking-appear', - icon: 'icon-sm ml-1.5 transform-gpu text-text-primary transition-transform duration-300', + base: 'group mt-3 flex w-fit items-center justify-center rounded-xl bg-surface-tertiary px-3 py-2 text-xs leading-[18px] animate-thinking-appear', + icon: 'icon-sm ml-1.5 transform-gpu text-text-primary transition-transform duration-200', } as const; const CONTENT_STYLES = { @@ -69,7 +69,7 @@ const Thinking: React.ElementType = memo(({ children }: { children: React.ReactN