Files
Hyperia/ui/public/components/Footer.js
metacryst eff0c160a5 begin
2025-09-06 20:26:07 -05:00

17 lines
283 B
JavaScript

css(`
page-footer {
display: flex;
justify-content: flex-end;
}
`)
export default class Footer extends HTMLElement {
connectedCallback() {
this.innerHTML += /* html */`
`
}
}
customElements.define("page-footer", Footer)