import { html, css, Component } from 'wkit' class Footer extends Component { static styles = css` .copyright { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 100%; height: 128px; background: var(--color-plain-1); color: var(--color-grey-2); .link { margin-left: 6px; color: var(--color-blue-1); text-decoration: underline; } } ` render() { return html` ` } } Footer.reg('footer')