Skip to content

Commit

Permalink
fix: background color in text-input (#1998)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickytonline authored Oct 25, 2023
2 parents 66df010 + 7879486 commit 1913462
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/atoms/TextInput/text-input.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ const TextInput = ({
placeholder={placeholder || ""}
className={clsx(
"w-full focus:outline-none placeholder:font-normal placeholder-slate-400",
disabled && "bg-light-slate-3 cursor-not-allowed text-light-slate-9"
disabled && "bg-light-slate-3 cursor-not-allowed text-light-slate-9",
"bg-inherit"
)}
disabled={disabled}
value={value}
Expand Down

0 comments on commit 1913462

Please sign in to comment.