Skip to content

Commit

Permalink
fix(Spacing): 잘못된 height가 들어가는 이슈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
evan-moon committed Jul 24, 2022
1 parent fc29af3 commit 1728370
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Spacing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Spacing = ({ size }: Props) => {
return (
<div
css={css`
height: ${size};
height: ${size}px;
`}
/>
);
Expand Down

0 comments on commit 1728370

Please sign in to comment.