fix: bump delete modal z-index to z-[100] to cover fixed header

Header uses fixed z-50 with backdrop-blur which creates its own
stacking context. z-[60] wasn't enough, z-[100] matches the
pattern used by VerificationModal.
This commit is contained in:
Usman Baig
2026-03-13 20:29:47 +01:00
parent 39e06183c3
commit 618c4fd5fe

View File

@@ -1335,7 +1335,7 @@ export default function OrganizationSettings() {
initial={{ opacity: 0 }}
animate={{ opacity: 1 }}
exit={{ opacity: 0 }}
className="fixed inset-0 z-[60] flex items-center justify-center bg-white/80 dark:bg-neutral-900/80 backdrop-blur-sm p-4 pointer-events-none"
className="fixed inset-0 z-[100] flex items-center justify-center bg-white/80 dark:bg-neutral-900/80 backdrop-blur-sm p-4 pointer-events-none"
>
<motion.div
initial={{ scale: 0.95, opacity: 0 }}