Files
template/components/d-acknowledgements.js
T

30 lines
490 B
JavaScript

import { Template } from "../mixins/template";
const name = 'd-acknowledgements';
const T = Template(name, `
<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 default class Acknowledgements extends T(HTMLElement) {
static get is() { return name; }
}
customElements.define(name, Acknowledgements);