Skip to content

Commit f482006

Browse files
committed
fix: 페이지 헤더 lead 문단을 컨테이너 전체 폭으로 확장
1 parent 107df3f commit f482006

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/pages/AboutPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ function PageHeader({
300300
fontSize: { xs: 16, md: 18 },
301301
lineHeight: 1.65,
302302
color: 'var(--fg-2)',
303-
maxWidth: 640,
303+
width: '100%',
304304
}}
305305
>
306306
{lead}

src/pages/GuidePage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ function PageHeader({
318318
>
319319
{title}
320320
</Typography>
321-
<Typography sx={{ fontSize: { xs: 16, md: 18 }, lineHeight: 1.65, color: 'var(--fg-2)', maxWidth: 640 }}>
321+
<Typography sx={{ fontSize: { xs: 16, md: 18 }, lineHeight: 1.65, color: 'var(--fg-2)', width: '100%' }}>
322322
{lead}
323323
</Typography>
324324
</Box>

0 commit comments

Comments
 (0)