Skip to content

Commit

Permalink
fix broken focus state
Browse files Browse the repository at this point in the history
  • Loading branch information
braunjj committed Nov 30, 2023
1 parent b3c4e49 commit 29a6060
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const StyledInput = styled.input<StyledInputProps>`
}
:focus {
box-shadow: ${({$strokeColor}) => $strokeColor || colorBorderDefault()} 0px 0px 0px 1px;
box-shadow: ${({$strokeColor}) => $strokeColor || colorBorderDefault()} 0px 0px 0px 1px,
${colorBorderFocused()} 0 0 0 2px;
background-color: ${colorBackgroundDefaultHover()};
}
Expand Down

0 comments on commit 29a6060

Please sign in to comment.