Is this possible with styled-jss?
const AuthorName = styled('div')({...})
const Avatar = styled('img')({...})
const Message = styled('div')({
[`&:not(:first-child) ${AuthorName}`]: {
display: 'none'
},
[`&:not(:last-child) ${Avatar}`]: {
visibility: 'hidden'
}
})
Is this possible with
styled-jss?