mirror of
https://github.com/wassname/template.git
synced 2026-06-27 19:33:10 +08:00
19 lines
338 B
JavaScript
19 lines
338 B
JavaScript
import { Template } from "../mixins/template";
|
|
import { body } from "../helpers/layout";
|
|
|
|
const T = Template("d-abstract", `
|
|
<style>
|
|
d-abstract {
|
|
display: block;
|
|
font-size: 23px;
|
|
line-height: 1.7em;
|
|
margin-bottom: 140px;
|
|
}
|
|
${body("d-abstract")}
|
|
</style>
|
|
`, false);
|
|
|
|
export class Abstract extends T(HTMLElement) {
|
|
|
|
}
|