updated toastify design

This commit is contained in:
2025-08-20 13:38:54 +02:00
parent c33f3e1101
commit c779a31bfa
2 changed files with 7 additions and 6 deletions

View File

@@ -2,7 +2,7 @@ import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
import { ToastContainer } from "react-toastify";
import { ToastContainer, Flip } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
import { QueryClientProvider } from "@tanstack/react-query";
import { queryClient } from "./utils/queryClient";
@@ -18,11 +18,11 @@ createRoot(document.getElementById("root")!).render(
newestOnTop
closeOnClick
rtl={false}
pauseOnFocusLoss={false}
pauseOnFocusLoss
draggable
pauseOnHover
theme="colored"
style={{ zIndex: 9999 }}
transition={Flip}
/>
</QueryClientProvider>
</StrictMode>