import {
DeesElement,
TemplateResult,
property,
customElement,
html,
css,
cssManager,
} from '@designestate/dees-element';
@customElement('deap-base')
export class DeapBase extends DeesElement {
public static demo = () => html``;
public static styles = [
cssManager.defaultStyles,
css`
:host {
position: absolute;
height: 100%;
width: 100%;
}
.maingrid {
position: absolute;
height: 100%;
width: 100%;
display: grid;
grid-template-columns: 80px 240px auto 210px;
}
`,
];
// INSTANCE
public render(): TemplateResult {
return html`
`;
}
}