Hacker News new | ask | show | jobs
by elecengin 3543 days ago
How do you do pseudo classes like :focus?
1 comments

Like this:

    const FocusInput = styled.input`
      &:focus {
        focus-styles: here;
      }
    `;