import { LitElement, html, css } from "lit"; import { customElement } from "lit/decorators.js"; @customElement("google-ad") export class GoogleAdElement extends LitElement { createRenderRoot() { return this; } static styles = css` .google-ad-container { margin-top: 1rem; background-color: rgba(255, 255, 255, 0.1); border-radius: 0.5rem; padding: 0.5rem; width: 100%; overflow: hidden; } .dark .google-ad-container { background-color: rgba(0, 0, 0, 0.2); } `; render() { return html` `; } }