Browser autofill forces a light background on inputs, making white text invisible in dark mode. Added -webkit-autofill overrides in globals.css and switched Input from bg-transparent to bg-background with explicit text-foreground. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
22 lines
766 B
TypeScript
22 lines
766 B
TypeScript
import * as React from "react";
|
|
import { cn } from "./utils";
|
|
|
|
const Input = React.forwardRef<HTMLInputElement, React.InputHTMLAttributes<HTMLInputElement>>(
|
|
({ className, type, ...props }, ref) => {
|
|
return (
|
|
<input
|
|
type={type}
|
|
className={cn(
|
|
"flex h-9 w-full rounded-md border border-input bg-background px-3 py-1 text-sm text-foreground shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
|
|
className,
|
|
)}
|
|
ref={ref}
|
|
{...props}
|
|
/>
|
|
);
|
|
},
|
|
);
|
|
Input.displayName = "Input";
|
|
|
|
export { Input };
|