aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/recipe.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/webview/recipe.ts')
-rw-r--r--src/webview/recipe.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/webview/recipe.ts b/src/webview/recipe.ts
index ed45192d3..36b8b7c98 100644
--- a/src/webview/recipe.ts
+++ b/src/webview/recipe.ts
@@ -265,6 +265,7 @@ class RecipeController {
265 if (pathExistsSync(userCss)) { 265 if (pathExistsSync(userCss)) {
266 const data = readFileSync(userCss); 266 const data = readFileSync(userCss);
267 styles.innerHTML += data.toString(); 267 styles.innerHTML += data.toString();
268 debug('Loaded user.css from: ', userCss);
268 } 269 }
269 document.querySelector('head')?.append(styles); 270 document.querySelector('head')?.append(styles);
270 271