19 lines
387 B
TypeScript
19 lines
387 B
TypeScript
import { html } from "@design.estate/dees-element";
|
|
|
|
export const page1 = () => html`
|
|
<style>
|
|
.container {
|
|
box-sizing: border-box;
|
|
position: absolute;
|
|
top: 20px;
|
|
height: 120px;
|
|
padding: 40px;
|
|
width: 100%;
|
|
background: rgba(0,0,0,0.2);
|
|
}
|
|
</style>
|
|
<div class="container">
|
|
<uptimelink-webwidget></uptimelink-webwidget>
|
|
</div>
|
|
`;
|