(fix:ui) minor adjustments

This commit is contained in:
ManishMadan2882
2025-03-13 20:39:17 +05:30
parent 27b24f19de
commit 5bc758aa2d
6 changed files with 25 additions and 11 deletions

View File

@@ -35,7 +35,15 @@ const Input = ({
<div className={`relative ${className}`}>
<input
ref={inputRef}
className={`peer h-[42px] w-full rounded-full px-3 py-1 bg-transparent outline-none dark:text-white placeholder-transparent ${colorStyles[colorVariant]} ${borderStyles[borderVariant]}`}
className={`h-[42px] w-full rounded-full px-3 py-1
bg-transparent outline-none
text-jet dark:text-bright-gray
placeholder-transparent
${colorStyles[colorVariant]}
${borderStyles[borderVariant]}
[&:-webkit-autofill]:bg-transparent
[&:-webkit-autofill]:appearance-none
[&:-webkit-autofill_selected]:bg-transparent`}
type={type}
id={id}
name={name}