mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2025-03-14 06:28:31 +03:00
Login theme bugfix.
This commit is contained in:
parent
4afd39b22f
commit
40ff26ea21
1 changed files with 3 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue