Login theme bugfix.

This commit is contained in:
Artem Krisanov 2023-04-18 14:11:28 +03:00
parent 4afd39b22f
commit 40ff26ea21

View File

@ -19,7 +19,9 @@
<div id="root"></div>
<script>
(function() {
document.body.dataset.theme = 'auto';
var prefersDark = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches;
var currentTheme = prefersDark ? 'dark' : 'light';
document.body.dataset.theme = currentTheme;
})();
</script>
</body>