Don't play theme change animation on page load

This commit is contained in:
Lynn 2022-01-17 23:43:36 +01:00
parent d7e2f52f11
commit 33709ce9b5
2 changed files with 3 additions and 1 deletions

View file

@ -5,7 +5,6 @@
body {
text-align: center;
background-color: #eeeeee;
transition: 0.3s background-color ease-out;
}
.Row {

View file

@ -36,6 +36,9 @@ function App() {
useEffect(() => {
document.body.className = dark ? "dark" : "";
setTimeout(() => {
document.body.style.transition = "0.3s background-color ease-out";
}, 1);
}, [dark]);
return (