Skip to content

Commit e7368c3

Browse files
committed
more color fixes
1 parent 2cf522c commit e7368c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/ui/input.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,19 @@ const Input = React.forwardRef<HTMLInputElement, InputProps>(
1212
<div
1313
className={cn(
1414
"flex h-10 items-center rounded-md border border-input bg-white pl-3 text-sm ring-offset-background focus-within:ring-1 focus-within:ring-ring focus-within:ring-offset-2",
15-
className
15+
className,
1616
)}
1717
>
1818
{icon}
1919
<input
2020
{...props}
2121
type="search"
2222
ref={ref}
23-
className="w-full p-2 placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50"
23+
className="w-full p-2 placeholder:text-muted-foreground focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50 bg-white"
2424
/>
2525
</div>
2626
);
27-
}
27+
},
2828
);
2929
Input.displayName = "Input";
3030

0 commit comments

Comments
 (0)