Skip to content

Commit

Permalink
fix(utils): add hover effect on input border
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Jun 30, 2022
1 parent 4c8e126 commit 3187544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/utils/classes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const useInputClasses = (error = false) => {
if (error) {
className.push(inputErrorClasses);
} else {
className.push('border-gray-300');
className.push('border-gray-300 hover:border-gray-400');
}

return className.join(' ');
Expand Down

0 comments on commit 3187544

Please sign in to comment.