fix: improve toast and dialog interations

This commit is contained in:
zhom
2025-06-03 13:56:58 +04:00
parent 2025a2a690
commit b00f62ebec
8 changed files with 58 additions and 13 deletions
+7
View File
@@ -15,8 +15,15 @@ const Toaster = ({ ...props }: ToasterProps) => {
"--normal-bg": "var(--popover)",
"--normal-text": "var(--popover-foreground)",
"--normal-border": "var(--border)",
zIndex: 99999,
} as React.CSSProperties
}
toastOptions={{
style: {
zIndex: 99999,
pointerEvents: "auto",
},
}}
{...props}
/>
);