diff --git a/src/shared/ui/Drawer/Drawer.tsx b/src/shared/ui/Drawer/Drawer.tsx index da42a373..0987d4ef 100644 --- a/src/shared/ui/Drawer/Drawer.tsx +++ b/src/shared/ui/Drawer/Drawer.tsx @@ -33,7 +33,7 @@ export function Drawer({ isOpen, onClose, children }: Props) { diff --git a/src/shared/ui/Modal/Modal.tsx b/src/shared/ui/Modal/Modal.tsx index 31472a90..486bd912 100644 --- a/src/shared/ui/Modal/Modal.tsx +++ b/src/shared/ui/Modal/Modal.tsx @@ -46,7 +46,7 @@ export function Modal({ isOpen, closeModal, children, className }: Props) { animate={MODAL_MOTION.animate} exit={MODAL_MOTION.exit} transition={MODAL_MOTION.transition} - className={cn('fixed inset-0 z-30 flex w-full items-center justify-center', className)} + className={cn('fixed inset-0 z-50 flex w-full items-center justify-center', className)} >
{children} @@ -62,7 +62,7 @@ export function ModalContent({ children }: { children: React.ReactNode }) { aria-modal="true" justifyContent="center" alignItems="center" - className="relative z-40 rounded-lg bg-white p-6" + className="relative z-50 rounded-lg bg-white p-6" > {children}