Skip to content

Commit 54a47e7

Browse files
committed
style(component): added hover and focus for Input
1 parent 552cc74 commit 54a47e7

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/components/Shared/Input/index.jsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@ const Component = (props) => {
4848
_placeholder: {
4949
color: 'gray35',
5050
},
51+
_hover: {
52+
borderColor: 'gray35',
53+
_disabled: {
54+
borderColor: 'gray15',
55+
},
56+
},
57+
_focusVisible: {
58+
borderColor: 'primary',
59+
},
5160
};
5261

5362
return (

0 commit comments

Comments
 (0)