diff --git a/components/common/Toast/index.module.scss b/components/common/Toast/index.module.scss index 9bcbdd01..6f60b13c 100644 --- a/components/common/Toast/index.module.scss +++ b/components/common/Toast/index.module.scss @@ -67,6 +67,15 @@ } } + @keyframes slideRight { + from { + transform: translateX(var(--radix-toast-swipe-end-x)); + } + to { + transform: translateX(100%); + } + } + @keyframes fadeOut { from { opacity: 1;