Skip to content

Instantly share code, notes, and snippets.

@gregwhitworth
Created February 28, 2017 00:25
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 gregwhitworth/352afbab7bc06a7f1b4c14d63606306e to your computer and use it in GitHub Desktop.
Save gregwhitworth/352afbab7bc06a7f1b4c14d63606306e to your computer and use it in GitHub Desktop.
custom-props-scoping.css
body {
--primary: blue;
background: var(--primary);
}
.my-component {
--primary: yellow;
background: var(--primary);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment