Added Chat Page

This commit is contained in:
2026-01-21 18:13:35 +01:00
parent 0ca8ce8b52
commit 3eed79ca93
37 changed files with 3966 additions and 64 deletions

View File

@@ -99,6 +99,17 @@ body {
}
}
@keyframes slideInRight {
from {
opacity: 0;
transform: translateX(100%);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.animate-fadeIn {
animation: fadeIn 0.2s ease-out;
}
@@ -106,3 +117,7 @@ body {
.animate-slideUp {
animation: slideUp 0.3s ease-out;
}
.animate-slideInRight {
animation: slideInRight 0.3s ease-out;
}