Skip to content

Commit

Permalink
fix: emotion px style
Browse files Browse the repository at this point in the history
  • Loading branch information
hyochan committed Dec 27, 2024
1 parent 0280fab commit b3aa6fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/uis/RadioGroup/RadioButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const StyledRadioCircle = styled(RadioWrapper)<{
margin: ${({innerLayout}) => innerLayout && '2px'};
border-radius: ${({innerLayout}) =>
innerLayout && `${innerLayout.width / 2}px`};
innerLayout && `${innerLayout.width / 2 + 'px'}`};
`;

export default function RadioButton({
Expand Down
4 changes: 2 additions & 2 deletions src/components/uis/Typography/Typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ const createTextComponent = (
{...props}
style={[
css`
font-size: ${fontSize}px;
line-height: ${lineHeight}px;
font-size: ${fontSize + 'px'};
line-height: ${lineHeight + 'px'};
`,
{includeFontPadding: false},
style,
Expand Down

0 comments on commit b3aa6fb

Please sign in to comment.