From de3863b8e145d33f47e9f44aac1c2341af364b4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=A7=88=ED=98=84=EC=9A=B0?= Date: Sun, 10 Dec 2023 22:19:45 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=ED=8F=B0=ED=8A=B8=20=EC=83=89=20?= =?UTF-8?q?=EB=AC=B8=EC=A0=9C=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Retry/RetryPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Retry/RetryPage.tsx b/src/components/Retry/RetryPage.tsx index c2b8e8e..71fdb5c 100644 --- a/src/components/Retry/RetryPage.tsx +++ b/src/components/Retry/RetryPage.tsx @@ -187,7 +187,7 @@ const Option = styled.div<{ isActive: boolean }>` width: 173px; height: 56px; ${font.p1}; - color: ${color.black}; + color: ${({ isActive }) => isActive ? color.white : color.black}; border-radius: 16px; background-color: ${({ isActive }) => isActive ? color.nodamGreen : color.gray100}; display: flex;