From b62c59eb5205bc1a5a07fb0a57b089015a61cbaf Mon Sep 17 00:00:00 2001 From: kangfenmao Date: Sat, 12 Apr 2025 17:02:17 +0800 Subject: [PATCH] style(SelectModelPopup): update background color animation for improved visual consistency --- src/renderer/src/components/Popups/SelectModelPopup.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/renderer/src/components/Popups/SelectModelPopup.tsx b/src/renderer/src/components/Popups/SelectModelPopup.tsx index e9d3adcd..3fe73840 100644 --- a/src/renderer/src/components/Popups/SelectModelPopup.tsx +++ b/src/renderer/src/components/Popups/SelectModelPopup.tsx @@ -456,8 +456,7 @@ const StyledMenu = styled(Menu)` /* Simple animation that changes background color when sticky */ @keyframes background-change { to { - background-color: var(--color-background-soft); - opacity: 0.95; + background-color: var(--color-background); } }