Skip to content

Commit

Permalink
feat: 디스크립션 고딕으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
sap03110 committed Dec 6, 2023
1 parent a720719 commit 6e9a47e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion src/components/ui/my-page/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ const GreetingBox = styled.div`
font-size: 18px;
font-weight: 700;
}
.introduce {
font-family: Pretendard;
}
`;

const ContentBox = styled.ul`
Expand Down Expand Up @@ -167,7 +171,7 @@ const MyPageProfile = () => {
}}
/>
</div>
{myProfile.profileContent || ''}
<p className="introduce">{myProfile.profileContent || ''}</p>
</GreetingBox>
<ContentBox>
<li>
Expand Down
6 changes: 5 additions & 1 deletion src/components/ui/your-page/profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ const GreetingBox = styled.div`
font-size: 18px;
font-weight: 700;
}
.introduce {
font-family: Pretendard;
}
`;
const ContentBox = styled.ul`
margin-top: 20px;
Expand Down Expand Up @@ -233,7 +237,7 @@ const YourPageProfile = () => {
}}
/>
</div>
{yourProfile.profileContent}
<p className="introduce">{yourProfile.profileContent}</p>
</GreetingBox>
<ContentBox>
<li>
Expand Down
1 change: 1 addition & 0 deletions src/pages/rank.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ const Description = styled.span`
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-family: Pretendard;
`;

const Badge = styled.img`
Expand Down

0 comments on commit 6e9a47e

Please sign in to comment.