Add missing animations to Toast

This commit is contained in:
Justin Edmund 2023-06-30 22:14:20 -07:00
parent 877cb4491e
commit 4a0865c088

View file

@ -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;
}
}
}