For my use case i had css with lots of Css Pseudo Classes
here is a demo example
.titleContainer {
display: flex;
flex-direction: row;
padding: 0 0 0 2rem;
}
.titleContainer:hover {
font-weight: 900;
}
Expected Behaviour ( as per JSS library ):-
"titleContainer": {
"display": "flex",
"flexDirection": "row",
"padding": "0 0 0 2rem",
"&:hover": {
"fontWeight": 900
}
}
Actual Behaviour :-
.titleContainer {
display: 'flex',
flexDirection: 'row',
padding: '0 0 0 2rem',
}
.titleContainer:hover {
fontWeight: '900',
}