41 lines
922 B
TypeScript
41 lines
922 B
TypeScript
import { LitElement, html, css } from "lit";
|
|
import { customElement } from "lit/decorators.js";
|
|
|
|
@customElement("competition-officials")
|
|
export class CompetitionOfficials extends LitElement {
|
|
static styles = css`
|
|
:host {
|
|
display: block;
|
|
}
|
|
|
|
.placeholder {
|
|
background: var(--color-bg-nav);
|
|
border: 1px solid var(--color-border);
|
|
border-radius: 0.75rem;
|
|
padding: 3rem;
|
|
text-align: center;
|
|
color: color-mix(in srgb, var(--color-text) 55%, transparent);
|
|
}
|
|
|
|
.placeholder p:first-child {
|
|
font-size: 1.1rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.placeholder p:last-child {
|
|
font-size: 0.875rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
`;
|
|
|
|
render() {
|
|
return html`
|
|
<div class="placeholder">
|
|
<p>Officials</p>
|
|
<p>Content will appear here once the competition is underway.</p>
|
|
</div>
|
|
`;
|
|
}
|
|
}
|
|
|
|
export default CompetitionOfficials; |