cssinjs / cssinjs/aphrodite-jss
merge is one-level
- Dominant language
- JavaScript
- Stars
- 94
- Forks
- 14
- PR merge metrics
- No merged PRs in 30d
Description
Given
```
const s = StyleSheet.create({
red: {
'&.active': {
width: '100px',
}
},
blue: {
'&.active': {
height: '100px',
}
},
})
```
Got
```
.red-3089191041--blue-1941479325.active {
height: 100px;
}
```
Expect
```
.red-3089191041--blue-1941479325.active {
width: 100px;
height: 100px;
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.