Skip to content

Commit

Permalink
chore: px to rem, gap 토큰 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Jun 4, 2024
1 parent f0a234f commit 5e57c8c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions packages/wow-ui/src/components/RadioGroup/RadioButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ const radioButtonStyle = cva({
base: {
appearance: "none",

width: 20,
height: 20,
width: "1.25rem",
height: "1.25rem",
borderRadius: "full",
borderWidth: 1,

Expand All @@ -89,8 +89,8 @@ const radioButtonStyle = cva({
borderColor: "primary",
_before: {
content: `""`,
width: 10,
height: 10,
width: "0.625rem",
height: "0.625rem",
borderRadius: "full",
background: "primary",
},
Expand Down
2 changes: 1 addition & 1 deletion packages/wow-ui/src/components/RadioGroup/RadioGroup.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const RadioGroup = ({
);

return (
<Flex direction="column" gap="0.5rem" role="radiogroup" width="fit-content">
<Flex direction="column" gap="xs" role="radiogroup" width="fit-content">
<RadioContext.Provider value={contextValue}>
{children}
</RadioContext.Provider>
Expand Down

0 comments on commit 5e57c8c

Please sign in to comment.