We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 609a0d2 commit 81a3d0bCopy full SHA for 81a3d0b
src/routes/session/-components/level-up-popup.tsx
@@ -23,8 +23,11 @@ export const LevelUpPopup = ({ isOpen, onClose }: LevelUpPopupProps) => {
23
24
return (
25
<Dialog.Root open={isOpen} onOpenChange={onClose}>
26
+ <Dialog.Title className="hidden">레벨업</Dialog.Title>
27
+ <Dialog.Description className="hidden">레벨업</Dialog.Description>
28
<AnimatePresence>
29
<Dialog.Portal>
30
+ <Dialog.Overlay className="fixed inset-0 z-50 bg-neutral-800 max-w-[600px] mx-auto" />
31
<Dialog.Content className="fixed inset-0 z-50 bg-neutral-800 max-w-[600px] mx-auto">
32
{/* 레벨업 텍스트와 뱃지 */}
33
{/* 배경 그라데이션 */}
0 commit comments