aboutsummaryrefslogtreecommitdiff
path: root/layouts/partials/themeSwitcher.html
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/themeSwitcher.html')
-rw-r--r--layouts/partials/themeSwitcher.html4
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>