Skip to content

Instantly share code, notes, and snippets.

@tomhodgins
Last active June 23, 2018 17:12
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 tomhodgins/aba076662287b5badae2c0955672a9c2 to your computer and use it in GitHub Desktop.
Save tomhodgins/aba076662287b5badae2c0955672a9c2 to your computer and use it in GitHub Desktop.
/* JS-powered Stylesheet */
${test ? `
example {
property: value;
}
` : ''}
/* JS-Powered Selector */
${test && 'example' || ''} {
property: value;
}
/* JS-Powered Property */
example {
property: ${test ? value1 : value2};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment