Add part to ET2Box base container

This commit is contained in:
Hadi Nategh 2022-07-27 15:31:09 +02:00
parent 7c053d9dad
commit 6ac41f0495

View File

@ -60,7 +60,7 @@ export class Et2Box extends Et2Widget(LitElement) implements et2_IDetachedDOM
render() render()
{ {
return html` return html`
<div ${this.id ? html`id="${this.id}"` : ''}> <div part="base" ${this.id ? html`id="${this.id}"` : ''}>
<slot></slot> <slot></slot>
</div> `; </div> `;
} }