From 1d8b6715d7f58658cf02b21b1fd1314efda0a7ae Mon Sep 17 00:00:00 2001 From: THE H3RMIT <72027864+PrathamAyush@users.noreply.github.com> Date: Thu, 30 Mar 2023 03:56:32 +0530 Subject: [PATCH] fix this issue webkit(-webkit=>--webkit) on line3 of toastContainer.scss because it create issue in showing proper toaste and shows error in terminal --- scss/_toastContainer.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_toastContainer.scss b/scss/_toastContainer.scss index 960e190e..75adb359 100644 --- a/scss/_toastContainer.scss +++ b/scss/_toastContainer.scss @@ -1,6 +1,6 @@ .#{$rt-namespace}__toast-container { z-index: var(--toastify-z-index); - -webkit-transform: translate3d(0, 0, var(--toastify-z-index)); + --webkit-transform: translate3d(0, 0, var(--toastify-z-index)); //fix this webkit(-webkit=>--webkit) position: fixed; padding: 4px; width: var(--toastify-toast-width);