2025-01-13 22:20:19 +01:00
|
|
|
import * as shared from './shared.js';
|
|
|
|
|
|
|
|
import { LitElement, html, css, type TemplateResult } from 'lit';
|
|
|
|
import { customElement } from 'lit/decorators.js';
|
|
|
|
import { property } from 'lit/decorators/property.js';
|
|
|
|
|
|
|
|
@customElement('consentsoftware-header')
|
|
|
|
export class ConsentsoftwareHeader extends LitElement {
|
|
|
|
public static demo = () => html`<consentsoftware-tabs></consentsoftware-tabs>`;
|
|
|
|
|
|
|
|
public static styles = css`
|
|
|
|
:host {
|
|
|
|
display: block;
|
2025-01-16 00:28:47 +01:00
|
|
|
line-height: 3em;
|
2025-01-13 22:20:19 +01:00
|
|
|
text-align: center;
|
|
|
|
font-family: ${shared.fontStack};
|
2025-01-16 00:28:47 +01:00
|
|
|
border-bottom: 1px dotted rgba(255, 255, 255, 0.1);
|
2025-01-13 22:20:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.heading {
|
|
|
|
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
|
|
|
|
public render(): TemplateResult {
|
|
|
|
return html`
|
|
|
|
<div class="heading">
|
|
|
|
What about cookies?
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
}
|