fix(core): update
This commit is contained in:
27
ts_web/elements/internal/uplinternal-miniheading.ts
Normal file
27
ts_web/elements/internal/uplinternal-miniheading.ts
Normal 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>
|
||||
`;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user