Added the layouts section, but I'm going to be pulling from emerald next.
This commit is contained in:
parent
f5a174710d
commit
764523ed4f
|
@ -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>`;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue