fix(chrome-ext): use Harper-specific HTML tag to avoid CSS conflicts (#2101)

This commit is contained in:
Elijah Potter 2025-10-23 09:33:12 -06:00 committed by GitHub
parent d68c6820b8
commit c4017eba95
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -13,7 +13,7 @@ export default class RenderBox {
private shadowHost: HTMLElement;
constructor(parent: Node) {
this.shadowHost = document.createElement('div');
this.shadowHost = document.createElement('harper-render-box');
parent.appendChild(this.shadowHost);
}