-
Notifications
You must be signed in to change notification settings - Fork 17
Open
Labels
Description
Given
const s = StyleSheet.create({
red: {
'&.active': {
width: '100px',
}
},
blue: {
'&.active': {
height: '100px',
}
},
})
<div className={cx(css(s.red, s.blue), 'active')}>
Got
.red-3089191041--blue-1941479325.active {
height: 100px;
}
Expect
.red-3089191041--blue-1941479325.active {
width: 100px;
height: 100px;
}