Skip to content

Commit

Permalink
fix(Input style): Fix wrong error style var name
Browse files Browse the repository at this point in the history
  • Loading branch information
ddsilva committed Mar 29, 2019
1 parent 77e6305 commit 9d5dc6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/shared/inputStyle.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const HOVER_STYLE = css`
box-shadow: 0 2px 6px 0 ${Colors.BLUE['50']};
`;

const ERROR_STŸLE = css`
const ERROR_STYLE = css`
border-color: ${Colors.ERROR['500']};
`;

Expand Down Expand Up @@ -77,7 +77,7 @@ const INPUT_STYLE = css`
${({ error }) =>
error &&
css`
${ERROR_STŸLE}
${ERROR_STYLE}
:hover, :focus {
${ERROR_HOVER_STYLE}
Expand All @@ -100,7 +100,7 @@ const INPUT_STYLE = css`
export {
DEFAULT_STYLE,
HOVER_STYLE,
ERROR_STŸLE,
ERROR_STYLE,
ERROR_HOVER_STYLE,
DISABLED_STYLE,
LABEL_STYLE,
Expand Down

0 comments on commit 9d5dc6c

Please sign in to comment.