Skip to content

Commit

Permalink
fix: 체크박스 selected 폰트 변경 (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeJeongHooo committed Sep 12, 2024
1 parent e026191 commit 91d077c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const CheckboxLabel = (props: CheckboxLabelProps) => {
return (
<span css={itemCss}>
<Txt typography="title3">{emoji}</Txt>
<Txt typography="body3" color={isChecked ? colors.primary500 : colors.black}>
<Txt typography={isChecked ? 'title2' : 'body2'} color={isChecked ? colors.primary500 : colors.black}>
{text}
</Txt>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const CheckboxLabel = (props: CheckboxLabelProps) => {
return (
<span css={itemCss}>
<Txt typography="title3">{emoji}</Txt>
<Txt typography="body3" color={isChecked ? colors.primary500 : colors.black}>
<Txt typography={isChecked ? 'title2' : 'body2'} color={isChecked ? colors.primary500 : colors.black}>
{text}
</Txt>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const RadioLabel = (props: RadioLabelProps) => {
return (
<span css={itemCss}>
<Txt typography="title3">{emoji}</Txt>
<Txt typography="body3" color={isChecked ? colors.primary500 : colors.black}>
<Txt typography={isChecked ? 'title2' : 'body2'} color={isChecked ? colors.primary500 : colors.black}>
{text}
</Txt>
</span>
Expand Down

0 comments on commit 91d077c

Please sign in to comment.