Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit 3 lat temu
..
dist First Commit 3 lat temu
lib First Commit 3 lat temu
.babelrc First Commit 3 lat temu
.eslintrc First Commit 3 lat temu
LICENSE First Commit 3 lat temu
changelog.md First Commit 3 lat temu
karma.conf.js First Commit 3 lat temu
package.json First Commit 3 lat temu
readme.md First Commit 3 lat temu
tests.html First Commit 3 lat temu
tests.webpack.js First Commit 3 lat temu
webpack.config.js First Commit 3 lat temu

readme.md

Global Styles for JSS

If you want to write regular globally scoped CSS with JSS, this plugin is for you. Don’t use it if you can avoid it.

Gitter

Top level global declarations block

const styles = {
  '@global': {
    body: {
      color: 'green'
    },
    a: {
      textDecoration: 'underline'
    }
  }
}

Top level global prefix

const styles = {
  '@global body': {
    color: 'green'
  }
}

Nested global declarations block

const styles = {
  button: {
    float: 'left',
    '@global': {
      span: {color: 'red'}
    }
  }
}

Nested global prefix

const styles = {
  button: {
    float: 'left',
    '@global span': {color: 'red'}
  }
}

Issues

File a bug against cssinjs/jss prefixed with [jss-global].

Run tests

npm i
npm run test

License

MIT