diff --git a/components/common/Toast/index.module.scss b/components/common/Toast/index.module.scss index b5bcf620..9bcbdd01 100644 --- a/components/common/Toast/index.module.scss +++ b/components/common/Toast/index.module.scss @@ -57,4 +57,22 @@ font-weight: $bold; } } + + @keyframes slideLeft { + from { + transform: translateX(100%); + } + to { + transform: translateX(0); + } + } + + @keyframes fadeOut { + from { + opacity: 1; + } + to { + opacity: 0; + } + } }