fix(core): update

This commit is contained in:
2021-09-23 14:30:02 +02:00
parent 5ce4209a79
commit b5cab6d077
13 changed files with 2220 additions and 1384 deletions

View File

@ -0,0 +1,27 @@
import { customElement, DeesElement, html, TemplateResult } from '@designestate/dees-element';
import * as domtools from '@designestate/dees-domtools';
@customElement('uplinternal-miniheading')
export class UplinternalMiniheading extends DeesElement {
public render(): TemplateResult {
return html`
${domtools.elementBasic.styles}
<style>
:host {
display: block;
font-family: Roboto Mono;
}
h5 {
display: block;
max-width: 900px;
margin: 0px auto;
padding: 0px 0px 10px 0px;
color: #707070;
}
</style>
<h5>${this.textContent}</h5>
`;
}
}