diff --git a/Frontend/src/components/ui/input.tsx b/Frontend/src/components/ui/input.tsx index 6ed9422..3f19c1d 100644 --- a/Frontend/src/components/ui/input.tsx +++ b/Frontend/src/components/ui/input.tsx @@ -7,7 +7,7 @@ const Input = React.forwardRef>( >( ); Input.displayName = "Input"; -export { Input }; +export { Input }; \ No newline at end of file diff --git a/Frontend/src/index.css b/Frontend/src/index.css index f2a93bb..4f3bce8 100644 --- a/Frontend/src/index.css +++ b/Frontend/src/index.css @@ -117,37 +117,23 @@ body { @apply bg-background text-foreground; } -} + /* Custom Animations */ @keyframes gradient { - 0% { - background-position: 0% 50%; - } - 50% { - background-position: 100% 50%; - } - 100% { - background-position: 0% 50%; - } + 0% { background-position: 0% 50%; } + 50% { background-position: 100% 50%; } + 100% { background-position: 0% 50%; } } @keyframes float { - 0%, 100% { - transform: translateY(0px); - } - 50% { - transform: translateY(-10px); - } + 0%, 100% { transform: translateY(0px); } + 50% { transform: translateY(-10px); } } @keyframes glow { - 0%, 100% { - box-shadow: 0 0 20px rgba(147, 51, 234, 0.3); - } - 50% { - box-shadow: 0 0 40px rgba(147, 51, 234, 0.6); - } + 0%, 100% { box-shadow: 0 0 20px rgba(147, 51, 234, 0.3); } + 50% { box-shadow: 0 0 40px rgba(147, 51, 234, 0.6); } } .animate-gradient {