Добавлены новые элементы в меню профиля, включая настройки cookies. Внедрен компонент CookieConsent в приложение для управления согласиями на использование cookies. Добавлена анимация для отображения уведомления о cookies.

This commit is contained in:
Bivekich
2025-07-06 20:39:07 +03:00
parent a67a4438ad
commit 391d47ed2b
8 changed files with 805 additions and 0 deletions

View File

@ -84,4 +84,20 @@ input[type=number]::-webkit-outer-spin-button {
}
input[type=number] {
-moz-appearance: textfield;
}
/* Анимация для cookie consent */
@keyframes slideInFromBottom {
from {
transform: translateY(100%);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.cookie-consent-enter {
animation: slideInFromBottom 0.3s ease-out;
}