diff options
| author | Yehonal <yehonal.azeroth@gmail.com> | 2021-11-16 10:36:04 +0100 |
|---|---|---|
| committer | Yehonal <yehonal.azeroth@gmail.com> | 2021-11-16 10:36:04 +0100 |
| commit | a5fe467bb58e430d38bcad0cb9edecc654e53c9c (patch) | |
| tree | 55399db5629b5c75733f4ce7576bcf4a9b7033e3 | |
| parent | 37535f4eac4fa91f112d78d211d424f8ca3458c7 (diff) | |
| download | wiki-a5fe467bb58e430d38bcad0cb9edecc654e53c9c.tar.gz wiki-a5fe467bb58e430d38bcad0cb9edecc654e53c9c.tar.bz2 wiki-a5fe467bb58e430d38bcad0cb9edecc654e53c9c.zip | |
fix: dark-mode on body
| -rw-r--r-- | _layouts/azerothcore.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/_layouts/azerothcore.html b/_layouts/azerothcore.html index 034f14a..17f428c 100644 --- a/_layouts/azerothcore.html +++ b/_layouts/azerothcore.html @@ -25,7 +25,11 @@ {% endif %} </head> -<body> +<body style="background-color: black;" onload="darkModeSetBodyBg()"> + <!-- dark mode --> + <script> + darkModeSetBodyBg() + </script> <div class="wrapper"> {% include git-wiki/sections/header/header.html %} <div class="git-wiki-page"> |
