Skip to content

Commit

Permalink
fix(client, ui): 라벨 폰트 사이즈 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SEOKKAMONI committed Apr 25, 2024
1 parent a34445f commit 092d791
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ const ProfileImageUploader = ({

return (
<StyledProfileImageUploaderContainer>
<Text color="gray600" fontType="p3" style={{ marginBottom: '8px' }}>
<Text color="gray600" fontType="p2" style={{ marginBottom: '8px' }}>
프로필 사진
</Text>
<StyledProfileImageUploader
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/InfoBox/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const InfoBox = forwardRef(function InfoBox(
return (
<StyledInfoBoxWrapper>
{label && (
<Text color="gray600" fontType="p3" style={{ marginBottom: '8px' }}>
<Text color="gray600" fontType="p2" style={{ marginBottom: '8px' }}>
{label}
</Text>
)}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/Input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const Input = forwardRef(function Input(
return (
<StyledInputWrapper>
{label && (
<Text color="gray600" fontType="p3" style={{ marginBottom: '8px' }}>
<Text color="gray600" fontType="p2" style={{ marginBottom: '8px' }}>
{label}
</Text>
)}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/Select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const Select = forwardRef(function Select(
return (
<StyledSelectContainer>
{label && (
<Text color="gray600" fontType="p3" style={{ marginBottom: '8px' }}>
<Text color="gray600" fontType="p2" style={{ marginBottom: '8px' }}>
{label}
</Text>
)}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/Textarea/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const Textarea = forwardRef(function Textarea(
return (
<StyledTextareaWrapper>
{label && (
<Text color="gray600" fontType="p3" style={{ marginBottom: '8px' }}>
<Text color="gray600" fontType="p2" style={{ marginBottom: '8px' }}>
{label}
</Text>
)}
Expand Down

0 comments on commit 092d791

Please sign in to comment.