Skip to content

Instantly share code, notes, and snippets.

@rowan-m
Created August 27, 2019 09:08
Show Gist options
  • Save rowan-m/b7bad52365af928f77a71674fcd57780 to your computer and use it in GitHub Desktop.
Save rowan-m/b7bad52365af928f77a71674fcd57780 to your computer and use it in GitHub Desktop.
const template = document.createElement('template');
template.innerHTML = `
<style>
#container {
--angle: 0rad;
transform: rotate(var(--angle));
}
</style>
<div id="container" part="container">
<slot></slot>
</div>`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment