This commit is contained in:
syuilo 2019-03-05 20:32:39 +09:00
parent d95b0dee6b
commit 467f68502a
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
2 changed files with 3 additions and 3 deletions

View file

@ -43,10 +43,10 @@ export const builtinThemes = [
]; ];
export function applyTheme(theme: Theme, persisted = true) { export function applyTheme(theme: Theme, persisted = true) {
document.documentElement.classList.add('change-theme'); document.documentElement.classList.add('changing-theme');
setTimeout(() => { setTimeout(() => {
document.documentElement.classList.remove('change-theme'); document.documentElement.classList.remove('changing-theme');
}, 500); }, 500);
// Deep copy // Deep copy

View file

@ -20,7 +20,7 @@ html, body
text-size-adjust 100% text-size-adjust 100%
font-family sans-serif font-family sans-serif
html.change-theme html.changing-theme
&, * &, *
transition-property all transition-property all
transition-duration 0.5s transition-duration 0.5s