Files
core/hwe/ts/util/customCSS.ts
T

10 lines
315 B
TypeScript

export function insertCustomCSS(key = 'sam_customCSS'){
const customCSS = localStorage.getItem(key);
if (customCSS) {
const css = document.createElement('style');
css.innerHTML = customCSS;
console.log(css);
document.getElementsByTagName('head')[0].appendChild(css);
}
}