Skip to content

Commit 7440f29

Browse files
committed
fix: 프리젠테이션 상세에서 요약 스타일 수정
1 parent 4527cf1 commit 7440f29

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

apps/pyconkr/src/components/pages/presentation_detail.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,11 @@ export const PresentationDetailPage: React.FC = ErrorBoundary.with(
161161
<PageLayout>
162162
<Typography variant="h4" fontWeight="700" textAlign="start" sx={{ width: "100%", px: 2, pt: 0, pb: 1 }} children={presentation.title} />
163163
{presentation.summary && (
164-
<Typography variant="h6" fontWeight="700" textAlign="start" sx={{ width: "100%", px: 2, pt: 1, pb: 3 }} children={presentation.summary} />
164+
<Typography
165+
variant="subtitle1"
166+
sx={{ width: "100%", px: 2, pt: 1, pb: 3, fontWeight: "600", whiteSpace: "pre-wrap" }}
167+
children={presentation.summary}
168+
/>
165169
)}
166170
<Divider flexItem />
167171
{presentation.categories.length ? (

0 commit comments

Comments
 (0)