Fix the dark theme from flashing at you every page load

This commit is contained in:
Bun 2025-07-03 00:19:57 -04:00
parent df4979192e
commit 567b4a64fc
5 changed files with 29 additions and 8 deletions

3
static/nofade.js Normal file
View file

@ -0,0 +1,3 @@
window.addEventListener("load", () => {
document.body.classList.remove("preload");
});