Add random congrats msg

This commit is contained in:
2025-10-15 18:37:05 +02:00
parent 76111ecd2d
commit 445f27a939
4 changed files with 170 additions and 21 deletions

View File

@@ -94,4 +94,21 @@
.dark .grid-scroll::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.2);
}
/* Toast custom animations */
@keyframes toast-in {
0% { transform: scale(0.7) translateY(40px); opacity: 0; }
100% { transform: scale(1) translateY(0); opacity: 1; }
}
.animate-toast-in {
animation: toast-in 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes float {
0% { transform: translateY(0); }
50% { transform: translateY(-8px); }
100% { transform: translateY(0); }
}
.animate-float {
animation: float 2s infinite ease-in-out;
}