From 7b98ce3514d5d583a4c104d5b333ee3d48ce35b6 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sat, 28 Oct 2023 20:42:57 -0400 Subject: [PATCH] fix: Background transition on home screen --- app/scenes/Home.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/scenes/Home.tsx b/app/scenes/Home.tsx index 5a09d0b7d..411054848 100644 --- a/app/scenes/Home.tsx +++ b/app/scenes/Home.tsx @@ -107,6 +107,7 @@ function Home() { const Documents = styled.div` position: relative; background: ${s("background")}; + transition: ${s("backgroundTransition")}; `; export default observer(Home);