mirror of
https://github.com/wassname/template.git
synced 2026-08-03 13:20:32 +08:00
24 lines
378 B
JavaScript
24 lines
378 B
JavaScript
import { Template } from "../mixins/template";
|
|
|
|
const T = Template('d-acknowledgements', `
|
|
<style>
|
|
::slotted(h3) {
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
margin-top: 20px;
|
|
margin-bottom: 0;
|
|
color: rgba(0,0,0,0.65);
|
|
line-height: 1em;
|
|
}
|
|
::slotted(*) a {
|
|
color: rgba(0, 0, 0, 0.6);
|
|
}
|
|
</style>
|
|
|
|
<slot></slot>
|
|
`);
|
|
|
|
export class Acknowledgements extends T(HTMLElement) {
|
|
|
|
}
|