We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41e0209 commit aefe094Copy full SHA for aefe094
src/components/common/inputs.tsx
@@ -115,6 +115,11 @@ const invalidTextCss = css`
115
border-color: ${p => p.theme.warningColor};
116
background-color: ${p => p.theme.warningBackground};
117
color: ${p => p.theme.mainColor};
118
+
119
+ &:hover:not(:disabled) {
120
+ border-color: ${p => p.theme.mainColor};
121
+ background-color: ${p => p.theme.warningBackground};
122
+ }
123
`;
124
125
type TextInputProps = React.InputHTMLAttributes<HTMLInputElement> & {
0 commit comments