diff --git a/web/components/profile/profile-info.tsx b/web/components/profile/profile-info.tsx index 671f31ff..4e0e3249 100644 --- a/web/components/profile/profile-info.tsx +++ b/web/components/profile/profile-info.tsx @@ -141,7 +141,9 @@ export function ProfileInfo(props: { > {user.name?.charAt(0).toUpperCase()} -
+
li::marker { animation: fade-out-slow 3s ease-out forwards; } +@keyframes profile-appear { + from { + opacity: 0; + transform: translateY(16px) scale(0.98); + } + to { + opacity: 1; + transform: translateY(0) scale(1); + } +} + +.animate-profile-appear { + animation: profile-appear 0.7s ease-out; +} + .guidance { opacity: 0.7; font-size: 14px;