Skip to content

Instantly share code, notes, and snippets.

@brunogarcia
Created August 12, 2016 07:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brunogarcia/851ab62876a1aeb494279110c5712786 to your computer and use it in GitHub Desktop.
Save brunogarcia/851ab62876a1aeb494279110c5712786 to your computer and use it in GitHub Desktop.
CSS Modules + composes
// myComponent.scss
.myStyle {
composes: some-helper from '_helpers.scss';
}
// _helpers.scss
.some-helper {
color: red
}
// final css
.myComponent__myStyle____2ALtb {
color: red
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment