import { LitElement, html, css } from '@lion/core'; class StyledDialogContent extends LitElement { static get styles() { return [ css` :host { background-color: #fff; } .nice { font-weight: bold; color: green; } .close-button { color: black; font-size: 28px; line-height: 28px; } `, ]; } _closeOverlay() { this.dispatchEvent(new Event('close-overlay', { bubbles: true })); } render() { return html`

Hello person who opened the dialog!

Look how nice this dialog looks!

`; } } customElements.define('styled-dialog-content', StyledDialogContent);