diff options
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/themeSwitcher.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/layouts/partials/themeSwitcher.html b/layouts/partials/themeSwitcher.html index 685bd82..902d8e3 100644 --- a/layouts/partials/themeSwitcher.html +++ b/layouts/partials/themeSwitcher.html @@ -8,7 +8,9 @@ const themeName = localStorage.getItem('theme'); if (themeName) { document.documentElement.className = themeName; - document.getElementById('themes').value = themeName; + const elt = document.getElementById('themes'); + elt.style.display = "block"; + elt.value = themeName; } })(); </script> |