Skip to content

Instantly share code, notes, and snippets.

@tonis2
Created May 2, 2018 15:26
Show Gist options
  • Select an option

  • Save tonis2/7a6fce0e37982e50b0034a5742129abb to your computer and use it in GitHub Desktop.

Select an option

Save tonis2/7a6fce0e37982e50b0034a5742129abb to your computer and use it in GitHub Desktop.
Add style to shadow dom
addStyle(sheet, location) {
const style = document.createElement("style");
style.type = `text/css`;
style.appendChild(document.createTextNode(sheet));
location.appendChild(style);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment