diff --git a/apps/web/components/login.tsx b/apps/web/components/login.tsx index 4bbb784a1..bd968ddc6 100644 --- a/apps/web/components/login.tsx +++ b/apps/web/components/login.tsx @@ -111,7 +111,7 @@ export default function Login(props: any) {
Are you new here?{" "} - + Create a new Account
diff --git a/apps/web/components/signup.tsx b/apps/web/components/signup.tsx index d7b27ba7b..8092c0198 100644 --- a/apps/web/components/signup.tsx +++ b/apps/web/components/signup.tsx @@ -187,7 +187,7 @@ export default function Signup(props: { source: string }) {Already have an account?{" "} - + Sign In
diff --git a/packages/ui/components/button/Button.tsx b/packages/ui/components/button/Button.tsx index 29bcf9183..2d2502833 100644 --- a/packages/ui/components/button/Button.tsx +++ b/packages/ui/components/button/Button.tsx @@ -6,7 +6,7 @@ export function Button(props: any) { const isLink = typeof props.href !== "undefined" && !props.disabled; const { color = "primary", icon, disabled, onClick } = props; const baseStyles = - "inline-flex gap-x-2 items-center justify-center min-w-[80px] rounded-md border border-transparent px-4 py-2 text-sm font-medium shadow-sm disabled:bg-gray-300"; + "inline-flex gap-x-2 items-center justify-center min-w-[80px] rounded-md border border-transparent px-4 py-2 text-sm font-medium shadow-sm disabled:bg-gray-300 duration-200"; const primaryStyles = "text-gray-900 bg-neon hover:bg-neon-dark"; const secondaryStyles = "border-gray-300 bg-white text-gray-700 hover:bg-gray-50";