Unified settings modal + dashboard shell redesign #69

Merged
uz1mani merged 107 commits from staging into main 2026-03-26 09:15:33 +00:00
46 changed files with 4507 additions and 381 deletions
Showing only changes of commit b18199aa48 - Show all commits

View File

@@ -376,13 +376,13 @@ export default function UnifiedSettingsModal() {
<AnimatePresence> <AnimatePresence>
{isOpen && ( {isOpen && (
<> <>
{/* Backdrop — instant appear, animated close */} {/* Backdrop — solid scrim, no blur (modal handles its own glass) */}
<motion.div <motion.div
initial={{ opacity: 1 }} initial={{ opacity: 1 }}
animate={{ opacity: 1 }} animate={{ opacity: 1 }}
exit={{ opacity: 0 }} exit={{ opacity: 0 }}
transition={{ duration: 0.15 }} transition={{ duration: 0.15 }}
className="fixed inset-0 z-[60] bg-black/60 backdrop-blur-sm" className="fixed inset-0 z-[60] bg-black/50"
onClick={handleBackdropClick} onClick={handleBackdropClick}
/> />