From 054870012a1f5d7c26c6e3155ca4a1d8ff02ad49 Mon Sep 17 00:00:00 2001 From: swee Date: Sat, 30 Nov 2024 17:36:45 -0800 Subject: [PATCH] Update script.user.js --- script.user.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/script.user.js b/script.user.js index 8de3cf7..cddddcd 100644 --- a/script.user.js +++ b/script.user.js @@ -13,7 +13,7 @@ document.documentElement.setAttribute('data-bs-theme', 'dark'); document.documentElement.classList.add("text-white"); -const noBoostrapStyle = document.createElement('style'); +const style = document.createElement('style'); noBoostrapStyle.innerHTML = ` body { background: #212529; @@ -29,4 +29,4 @@ noBoostrapStyle.innerHTML = ` color: #212529; } `; -document.head.appendChild(noBoostrapStyle); \ No newline at end of file +document.head.appendChild(style); \ No newline at end of file