Skip to content

Commit

Permalink
Remove border-transparent to fix dupe issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rushi committed Sep 23, 2023
1 parent d1851f9 commit 3cf65a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Forms/BaseInput.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const BaseInput = ({ as: Tag, size = "medium", isError, className, isRequ
<Tag
className={clsx(
"w-full rounded text-gray-darker placeholder-gray-dark hover:placeholder-gray-darker disabled:text-gray",
"border border-transparent hover:border-black hover:bg-gray-lighter focus:text-black active:text-black disabled:bg-gray-lighter",
"border hover:border-black hover:bg-gray-lighter focus:text-black active:text-black disabled:bg-gray-lighter",
sizes[size],
isError
? "border-danger focus:border-danger focus:ring-0 focus:ring-danger"
Expand Down

0 comments on commit 3cf65a5

Please sign in to comment.