diff --git a/frappe/public/scss/toast.scss b/frappe/public/scss/toast.scss index 85e10934b5..530168b055 100644 --- a/frappe/public/scss/toast.scss +++ b/frappe/public/scss/toast.scss @@ -110,21 +110,11 @@ } @keyframes backOutRight { - 0% { - -webkit-transform: scale(1); - transform: scale(1); - opacity: 1; - } - - 20% { - -webkit-transform: translateX(0px) scale(0.8); - transform: translateX(0px) scale(0.8); - opacity: 0.7; - } + 0% { opacity: 1; } 100% { - -webkit-transform: translateX(2000px) scale(0.8); - transform: translateX(2000px) scale(0.8); + -webkit-transform: translateX(2000px); + transform: translateX(2000px); opacity: 0.7; } }