Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] 폰트가 두껍게 보이는 오류 해결 및 폰트 수정 #187

Merged
merged 3 commits into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading