refacor: customCSS 코드 분리

This commit is contained in:
2021-12-16 03:23:11 +09:00
parent 7631d99ce6
commit d736e2d947
3 changed files with 16 additions and 15 deletions
+9
View File
@@ -0,0 +1,9 @@
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);
}
}