mailgo style tag

This commit is contained in:
Matteo Manzinello
2020-06-01 12:18:59 +02:00
parent f95fe95a07
commit 811f737c43
2 changed files with 4 additions and 2 deletions

View File

@@ -827,7 +827,7 @@ const mailgoStyle = (): void => {
let mailgoCSS: HTMLStyleElement = createElement("style") as HTMLStyleElement;
mailgoCSS.id = "mailgo-style";
mailgoCSS.type = "text/css";
mailgoCSS.appendChild(createTextNode(`MAILGO_STYLE`));
mailgoCSS.appendChild(createTextNode(`{{MAILGO_STYLE}}`));
document.head.appendChild(mailgoCSS);
};