Skip to content

Instantly share code, notes, and snippets.

@nsisodiya
Created September 28, 2021 17:07
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 nsisodiya/680a3187798d3e67b949f5b84998a5e7 to your computer and use it in GitHub Desktop.
Save nsisodiya/680a3187798d3e67b949f5b84998a5e7 to your computer and use it in GitHub Desktop.
import { css } from 'lit';
var styles = css`
.bg-red {
background: red;
}
`;
const style = document.createElement('style');
style.textContent = styles.toString();
document.head.append(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment