diff --git a/frontend/src/components/Login.tsx b/frontend/src/components/Login.tsx index b0eb6741..2e9ddc1f 100644 --- a/frontend/src/components/Login.tsx +++ b/frontend/src/components/Login.tsx @@ -107,7 +107,7 @@ export function Login({ className, ...props }: React.ComponentPropsWithoutRef<'d
- +
+
+
SENCHO - + + + +
{children}
diff --git a/frontend/src/index.css b/frontend/src/index.css index c0526aab..4d674069 100644 --- a/frontend/src/index.css +++ b/frontend/src/index.css @@ -562,6 +562,10 @@ body { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } } +@keyframes shimmer { + 0% { transform: translateY(-100%); } + 100% { transform: translateY(200%); } +} /* ───────────────────────────────────────────────────────────── ANIMATION UTILITIES @@ -581,6 +585,9 @@ body { .animate-scale-in { animation: scale-in var(--duration-fast) var(--ease-spring) both; } +.animate-shimmer { + animation: shimmer 4.5s ease-in-out infinite alternate; +} /* Stagger delay helpers */ .animate-delay-50 { animation-delay: 50ms; }