From 29e1ea59fc2bd9bb83fcb0011368c46676e12251 Mon Sep 17 00:00:00 2001 From: psychedelicious <4822129+psychedelicious@users.noreply.github.com> Date: Wed, 22 May 2024 05:52:49 +1000 Subject: [PATCH] feat(ui): style copy button on ToastWithSessionRefDescription --- .../web/src/features/toast/ToastWithSessionRefDescription.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx b/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx index 607dcaeb63..9d2999e765 100644 --- a/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx +++ b/invokeai/frontend/web/src/features/toast/ToastWithSessionRefDescription.tsx @@ -20,8 +20,11 @@ export default function ToastWithSessionRefDescription({ message, sessionId }: P icon={} onClick={onCopy.bind(null, sessionId)} variant="ghost" + sx={sx} /> ); } + +const sx = { svg: { fill: 'base.50' } };