Skip to content

Commit

Permalink
design: RadioContainer radio wrap 시 옵션간 상하 여백 조정
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Mar 23, 2024
1 parent 32b6adc commit c4e6359
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/RadioContainer/RadioContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const RadioContainer = <T extends string>({
}: Props<T>) => {
return (
<div {...attributes}>
<Flex alignItems="center" paddingBottom={12}>
<Flex alignItems="center" paddingBottom={4}>
<Text font="suit15m" color="b9" required={required}>
{label}
</Text>
Expand Down Expand Up @@ -75,6 +75,7 @@ const RadioLabel = styled.label<{ gap: GapType }>`
position: relative;
padding-left: 28px;
margin-right: ${({ gap }) => (gap === 'large' ? '30px' : '18px')};
margin-top: 8px;
cursor: pointer;
font-size: 15px;
font-weight: 500;
Expand Down

0 comments on commit c4e6359

Please sign in to comment.