Skip to content

Commit

Permalink
update for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
pprunty committed Nov 30, 2023
1 parent eeedf8a commit 7028d67
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion demo/src/OtpInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const Input = styled.input<InputProps>`
}
&:focus {
border-color: ${props => props.highlightColor || '#ff8000'};
border-color: ${props => props.highlightColor || '#0862e1'};
outline: none;
}
Expand All @@ -126,6 +126,11 @@ const Spacer = styled.div`
color: #DDDDDD;
margin-right: 3px;
margin-left: 3px;
@media (max-width: 600px) {
margin-right: 1px;
margin-left: 1px;
}
`;

const OtpInput: React.FC<OtpInputProps> = ({
Expand Down

0 comments on commit 7028d67

Please sign in to comment.