diff --git a/index.html b/index.html index 2b22232..ef9b3c9 100644 --- a/index.html +++ b/index.html @@ -54,6 +54,24 @@ 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } } + + @keyframes slideInRight { + from { transform: translateX(100%); opacity: 0; } + to { transform: translateX(0); opacity: 1; } + } + + @keyframes slideOutRight { + from { transform: translateX(0); opacity: 1; } + to { transform: translateX(100%); opacity: 0; } + } + + .toast-enter { + animation: slideInRight 0.3s ease-out; + } + + .toast-exit { + animation: slideOutRight 0.3s ease-in; + } @@ -114,11 +132,12 @@
-
+ @@ -304,6 +323,11 @@
+ +
+ +
+