From 3c2e4d40ec3caca5afafa21ff17e843a445d279c Mon Sep 17 00:00:00 2001 From: jeffvli Date: Mon, 23 Oct 2023 15:45:47 -0700 Subject: [PATCH] Update play button for dynamic theme --- src/renderer/features/shared/components/play-button.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/renderer/features/shared/components/play-button.tsx b/src/renderer/features/shared/components/play-button.tsx index cc4114b7..04ee0cc9 100644 --- a/src/renderer/features/shared/components/play-button.tsx +++ b/src/renderer/features/shared/components/play-button.tsx @@ -6,7 +6,7 @@ const MotionButton = styled(UnstyledButton)` display: flex; align-items: center; justify-content: center; - background-color: var(--btn-filled-bg); + background: var(--btn-filled-bg); border: none; border-radius: 50%; opacity: 0.8; @@ -16,7 +16,7 @@ const MotionButton = styled(UnstyledButton)` } &:hover { - background-color: var(--btn-filled-bg-hover); + background: var(--btn-filled-bg); transform: scale(1.1); svg {