Skip to content

Commit

Permalink
fix: 폰트 색 문제 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
마현우 committed Dec 10, 2023
1 parent b02ecff commit de3863b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Retry/RetryPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit de3863b

Please sign in to comment.