Selaa lähdekoodia

modify toast position

AykutSarac 3 vuotta sitten
vanhempi
commit
88b1c45b2f
1 muutettua tiedostoa jossa 1 lisäystä ja 4 poistoa
  1. 1 4
      src/pages/_app.tsx

+ 1 - 4
src/pages/_app.tsx

@@ -42,16 +42,13 @@ function JsonVisio({ Component, pageProps }: AppProps) {
       <GlobalStyle />
       <Component {...pageProps} />
       <Toaster
-        position="top-right"
+        position="bottom-right"
         toastOptions={{
           style: {
             background: "#4D4D4D",
             color: "#B9BBBE",
           },
         }}
-        containerStyle={{
-          top: 40,
-        }}
       />
     </ThemeProvider>
   );