From 40f60c163d008da4cbb64afb19f6d4f19f924f28 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sun, 17 Aug 2025 03:43:39 +0400 Subject: [PATCH] fix: her theme --- src/app.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app.html b/src/app.html index e786725e40..19b389163e 100644 --- a/src/app.html +++ b/src/app.html @@ -83,9 +83,14 @@ logo.style = 'position: absolute; width: auto; height: 6rem; top: 44%; left: 50%; transform: translateX(-50%); display:block;'; logo.src = isDarkMode ? '/static/splash-dark.png' : '/static/splash.png'; + document.addEventListener('DOMContentLoaded', function () { const splash = document.getElementById('splash-screen'); + if (document.documentElement.classList.contains('her')) { + return; + } + if (splash) splash.prepend(logo); }); })();