Added the layouts section, but I'm going to be pulling from emerald next.

This commit is contained in:
Elf M. Sternberg 2024-11-28 09:39:15 -08:00
parent f5a174710d
commit 764523ed4f
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
export class FixedFooter extends LitElement {
static get styles() {
return css``;
}
render() {
return html`<div class="fixed-footer">
<section class="body" part="body"><slot></slot></section>
<footer class="footer" part="footer"><slot name="footer"></slot></footer>
</div>`;
}
}