feat(frontend): add dynamic animations to login and admin panel

This commit is contained in:
Zuev
2026-02-20 00:48:03 +03:00
parent e9c08b4c75
commit 86a29f6419
9 changed files with 228 additions and 37 deletions

View File

@@ -46,8 +46,21 @@
transition: background 0.4s ease, color 0.4s ease;
}
@keyframes fadeInScale {
from {
opacity: 0;
transform: scale(0.9);
}
to {
opacity: 1;
transform: scale(1);
}
}
.placeholder {
text-align: center;
animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.placeholder h1 {