npm install jss-globalIf you want to write regular globally scoped CSS with JSS, this plugin is for you. Don't use it if you can avoid it.

``javascript`
const styles = {
'@global': {
body: {
color: 'green'
},
a: {
textDecoration: 'underline'
}
}
}
`javascript`
const styles = {
'@global body': {
color: 'green'
}
}
`javascript`
const styles = {
button: {
float: 'left',
'@global': {
span: {color: 'red'}
}
}
}
`javascript`
const styles = {
button: {
float: 'left',
'@global span': {color: 'red'}
}
}
File a bug against [cssinjs/jss prefixed with \[jss-global\]](https://github.com/cssinjs/jss/issues/new?title=[jss-global]%20).
`bash``
npm i
npm run test
MIT