Added new component

This commit is contained in:
Laux Dev
2026-03-03 16:40:24 +08:00
parent e1c6b4bfc4
commit b054ee1867
13 changed files with 66 additions and 359 deletions

View File

@@ -10,6 +10,19 @@
bottom: 25px;
z-index: 11;
right: 20px;
animation-name: showToast;
animation-duration: 0.15s;
animation-timing-function: ease-in-out;
}
@keyframes showToast {
0% {
opacity: 0;
transform: translateX(100%);
}
100% {
opacity: 1;
transform: translateX(0%);
}
}
.messageContainer {
display: flex;