Skip to content

Commit

Permalink
[BUG] 폰트가 두껍게 보이는 오류 해결 및 폰트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
eonseok-jeon authored Dec 30, 2024
2 parents ad5c731 + c72ba5d commit 19b139d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ const ExecInfo = ({ selectedExec }: ExecInfoProps) => {
<span>프로필 사진</span>
<RequiredIcon />
</StInputLabel>
<StDescription>사진은 1:1 비율로 올려주세요.</StDescription>
<StDescription>
사진은 1:1 비율로 올려주세요. 사진 용량은 00mb 아래로 첨부해주세요.
</StDescription>
<MyDropzone
method={method}
label={`member.${selectedExec}.profileImageFileName`}
Expand Down
2 changes: 1 addition & 1 deletion src/components/org/OrgAdmin/AboutSection/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const StInputLabel = styled.label`
`;

export const StDescription = styled.p`
${fontsObject.LABEL_4_12_SB};
${fontsObject.LABEL_3_14_SB};
color: ${colors.gray300};
`;

Expand Down
4 changes: 4 additions & 0 deletions src/styles/global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ const global: Interpolation<Theme> = (theme: Theme) => css`
overflow-y: scroll;
overflow-x: hidden;
font-smooth: never;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
&::-webkit-scrollbar {
width: 1.2rem;
}
Expand Down

0 comments on commit 19b139d

Please sign in to comment.