You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{LitElement,html,css}from'lit-element';constmainColor=css`red`;classMyElementextendsLitElement{staticgetstyles(){returncss` div { color: ${mainColor} } `;}render(){returnhtml`<div>Some content in a div</div>`;}}customElements.define('my-element',MyElement);
The text was updated successfully, but these errors were encountered:
I am just wondering why lit-css - https://lit-element.polymer-project.org/guide/styles - is not being used in this repo?
The text was updated successfully, but these errors were encountered: