fix: 히스토리 그리드 오버플로우 수정

MetalCard에 overflow: hidden 추가.
HistoryPage 컨테이너에 overflow: hidden 추가.
This commit is contained in:
Yun Chan 2026-04-08 11:56:56 +09:00
parent 239fb820b8
commit 4b14fa9553
2 changed files with 2 additions and 1 deletions

View file

@ -84,7 +84,7 @@ export function HistoryPage(): React.ReactElement {
}, [activeTag])
return (
<Box sx={{ mx: 'auto', p: 4 }}>
<Box sx={{ mx: 'auto', p: 4, overflow: 'hidden' }}>
{/* 페이지 헤더 -- 각인 스타일 */}
<PageHeader
title={t('history.title').toUpperCase()}