aboutsummaryrefslogtreecommitdiffstats
path: root/src/webview/recipe.ts
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2023-02-01 12:41:35 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2023-02-01 12:41:35 +0530
commit57d42981a17cf7cf0cd8e3700de9a6f59219c92f (patch)
tree40a38fd9ebff026680e95f38ca5232783623dd8d /src/webview/recipe.ts
parentBump react-dropzone from 11.7.1 to 14.2.3 (#887) (diff)
downloadferdium-app-57d42981a17cf7cf0cd8e3700de9a6f59219c92f.tar.gz
ferdium-app-57d42981a17cf7cf0cd8e3700de9a6f59219c92f.tar.zst
ferdium-app-57d42981a17cf7cf0cd8e3700de9a6f59219c92f.zip
Added debug stmts when loading 'user.css' and 'darkmode.css'
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