sitemap и тд

This commit is contained in:
Georgiy Syralev
2025-11-01 12:29:46 +03:00
parent 727785c7a0
commit d45baf2260
80 changed files with 9811 additions and 748 deletions

View File

@@ -1,3 +1,34 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;
/* Анимации для модальных окон и уведомлений */
@keyframes modal-enter {
from {
opacity: 0;
transform: scale(0.95) translateY(-10px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
@keyframes toast-enter {
from {
opacity: 0;
transform: translateX(100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.animate-modal-enter {
animation: modal-enter 0.2s ease-out;
}
.animate-toast-enter {
animation: toast-enter 0.3s ease-out;
}