Y
Hacker News
new
|
ask
|
show
|
jobs
by
elecengin
3543 days ago
How do you do pseudo classes like :focus?
1 comments
mxstbr
3543 days ago
Like this:
const FocusInput = styled.input` &:focus { focus-styles: here; } `;
link