You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ui/src/layout/Section.component.ts

18 lines
386 B

import {ExComponent} from '../ExComponent.js'
import {Component} from '../decorators.js'
@Component('ex-section')
export class SectionComponent extends ExComponent {
protected static html = `
<style>
.container {
min-height: 100vh;
}
</style>
<div class="container">
<slot></slot>
</div>
`
}