Skip to content

Commit b1ae718

Browse files
committed
fix: 모달 폰트 크기 수정
1 parent c5baed5 commit b1ae718

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/components/common/Modal/BasicModal.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ const BasicModal = ({
5050
</DialogClose>
5151
)}
5252
<DialogHeader>
53-
<DialogTitle className='text-xl md:text-2xl text-left'>{title}</DialogTitle>
53+
<DialogTitle className='custom-text-xl-bold md:custom-text-2xl-bold text-left'>
54+
{title}
55+
</DialogTitle>
5456
<DialogDescription className='sr-only'>다이얼로그 내용</DialogDescription>
5557
</DialogHeader>
5658

src/components/common/Modal/ConfirmModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const ConfirmModal = ({ children, buttons, open, onOpenChange }: ConfirmModalPro
2525
>
2626
<DialogHeader>
2727
{/* 컨텐츠 영역 */}
28-
<DialogTitle className='mt-2 flex justify-center text-lg md:text-xl'>
28+
<DialogTitle className='mt-2 flex justify-center custom-text-2lg-bold md:custom-text-xl-bold'>
2929
{children}
3030
</DialogTitle>
3131
<DialogDescription className='sr-only'>다이얼로그 내용</DialogDescription>

0 commit comments

Comments
 (0)