fix(style): fix the issue mentioned in #127

This commit is contained in:
Brayn Lee
2021-09-05 02:07:33 +08:00
committed by 神戸小鳥
parent 7e808e1bde
commit f730eaa0e6
6 changed files with 42 additions and 7 deletions

View File

@@ -483,7 +483,7 @@ class App{
const themeLink = $(document).find('#themeLink');
if(theme == 'light') {
themeLink.attr('href', 'style.css');
themeLink.attr('href', 'light.css');
} else {
themeLink.attr('href', 'dark.css');
}