Skip to content

Commit

Permalink
fix: color issue
Browse files Browse the repository at this point in the history
  • Loading branch information
joaodiaslobo committed Nov 29, 2023
1 parent 8c9685c commit 4bd9732
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Input/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function InputBase({
</label>
<div
className={`text-iregular mt-2 flex items-center ${
enabled ? textColor : "text-gray-500"
enabled == false ? "text-gray-500" : textColor
} ${backColor} appearance-none rounded-full border border-gray-300 px-3 py-2 pl-6 placeholder-gray-400 shadow-sm sm:text-sm`}
>
{children}
Expand Down

0 comments on commit 4bd9732

Please sign in to comment.