14 lines
335 B
JavaScript
14 lines
335 B
JavaScript
css(`
|
|
forum- {
|
|
width: 100%; height: 100%;
|
|
}
|
|
`)
|
|
|
|
export default class Forum extends HTMLElement {
|
|
|
|
connectedCallback() {
|
|
this.innerHTML += /* html */`<p style="position: fixed; top: 50vh; left: 50vw; transform: translate(-50%, -50%)">Coming Soon!</p>`
|
|
}
|
|
}
|
|
|
|
customElements.define("forum-", Forum) |