Skip to content

Commit

Permalink
fix(InformHalfCard): 메인 화면의 HalfCard 의 글자크기 조절
Browse files Browse the repository at this point in the history
해상도에 따라 글자를 2줄로 처리되지 않고 1줄로 처리하도록 수정
  • Loading branch information
pp449 committed Feb 2, 2024
1 parent 76938ff commit fea7f1a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/pages/Home/components/InformHalfCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,15 @@ const TitleWrapper = styled.div`
`;

const Title = styled.h2`
font-size: 16px;
font-size: 14px;
white-space: nowrap;
font-weight: bold;
`;

const SubTitle = styled.h3`
color: ${THEME.TEXT.SEMIBLACK};
display: flex;
justify-content: flex-end;
font-size: 13px;
font-size: 11px;
padding-bottom: 6px;
`;

0 comments on commit fea7f1a

Please sign in to comment.