✨ feat(Security): Active l'authentification à deux facteurs (2FA). ✨ feat(Account): Ajoute une entité et un formulaire pour les administrateurs. 🐛 fix(Security): Corrige la redirection après la connexion. ✨ feat(CRM): Ajoute une page d'administration des comptes administrateurs.
12 lines
259 B
SCSS
12 lines
259 B
SCSS
@import "tailwindcss";
|
|
|
|
|
|
form {
|
|
label {
|
|
color: white !important;
|
|
}
|
|
}
|
|
|
|
.animate-fadeIn { animation: fadeIn 0.3s ease-in-out; }
|
|
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
|