Skip to content

Commit

Permalink
fix: 커피챗 상세 페이지 QA 적용 (#1715)
Browse files Browse the repository at this point in the history
* fix: 상세페이지 제목 깨짐 현상 수정

* fix: 커피챗 섹션 분리 및 타이틀 표기 여부 조건 추가

* fix: 빌드 에러 수정

* fix: 커피챗 섹션 분리 취소
  • Loading branch information
hayounSong authored Dec 29, 2024
1 parent 9f200dc commit 934e9fa
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions src/components/coffeechat/detail/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -113,18 +113,6 @@ const ProfilPojectSection = styled.div`
}
`;

const SoptActivityTitle = styled.h2`
margin: 60px 0 32px;
color: ${colors.white};
${fonts.HEADING_28_B};
@media ${MOBILE_MEDIA_QUERY} {
margin: 40px 0 20px;
${fonts.HEADING_20_B};
}
`;

const DetailPageLayout = styled.div`
display: flex;
justify-content: center;
Expand Down Expand Up @@ -156,7 +144,9 @@ const CoffeechatTitle = styled.h1`
@media ${MOBILE_MEDIA_QUERY} {
${fonts.HEADING_28_B};
height: 84px;
-webkit-line-clamp: 10;
height: auto;
min-height: 84px;
}
`;

Expand All @@ -167,3 +157,15 @@ const CoffeechatHeader = styled.header`
justify-content: space-between;
margin-bottom: 24px;
`;

const SoptActivityTitle = styled.h2`
margin: 60px 0 32px;
color: ${colors.white};
${fonts.HEADING_28_B};
@media ${MOBILE_MEDIA_QUERY} {
margin: 40px 0 20px;
${fonts.HEADING_20_B};
}
`;

0 comments on commit 934e9fa

Please sign in to comment.