Skip to content

Commit 81a3d0b

Browse files
committed
feat: 레벨업 팝업에 제목 및 설명 추가, 배경 오버레이 스타일 개선
1 parent 609a0d2 commit 81a3d0b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/routes/session/-components/level-up-popup.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ export const LevelUpPopup = ({ isOpen, onClose }: LevelUpPopupProps) => {
2323

2424
return (
2525
<Dialog.Root open={isOpen} onOpenChange={onClose}>
26+
<Dialog.Title className="hidden">레벨업</Dialog.Title>
27+
<Dialog.Description className="hidden">레벨업</Dialog.Description>
2628
<AnimatePresence>
2729
<Dialog.Portal>
30+
<Dialog.Overlay className="fixed inset-0 z-50 bg-neutral-800 max-w-[600px] mx-auto" />
2831
<Dialog.Content className="fixed inset-0 z-50 bg-neutral-800 max-w-[600px] mx-auto">
2932
{/* 레벨업 텍스트와 뱃지 */}
3033
{/* 배경 그라데이션 */}

0 commit comments

Comments
 (0)