diff --git a/Views/Shared/_Layout.cshtml b/Views/Shared/_Layout.cshtml index 2a4e856..c75bd53 100644 --- a/Views/Shared/_Layout.cshtml +++ b/Views/Shared/_Layout.cshtml @@ -8,7 +8,7 @@ -
+ @RenderBody() diff --git a/wwwroot/js/site.js b/wwwroot/js/site.js index 7b4d354..a7092fa 100644 --- a/wwwroot/js/site.js +++ b/wwwroot/js/site.js @@ -63,11 +63,6 @@ $(function () { }); }); - // set dark mode - if (window.location.hash == '#dark') { - $('body').addClass('dark'); - } - let timer = null; const ignoredKeyCodes = [17, 18, 20, 27, 37, 38, 39, 40, 91];