Reverted a change to be able to use side by side backgrounds

This commit is contained in:
Michael Arestad 2022-08-25 16:34:26 -06:00
parent c135e71079
commit 5450a8e6ae

View File

@ -46,6 +46,7 @@ const ThemeBlock = styled.div(
padding: 10,
},
({ theme }) => ({
background: theme.background.content,
color: theme.color.defaultText,
}),
({ side }) =>
@ -66,6 +67,7 @@ const ThemeStack = styled.div(
minHeight: 'calc(50vh - 15px)',
},
({ theme }) => ({
background: theme.background.content,
color: theme.color.defaultText,
})
);
@ -84,6 +86,7 @@ const PlayFnNotice = styled.div(
},
},
({ theme }) => ({
background: theme.background.content,
color: theme.color.defaultText,
})
);
@ -92,6 +95,7 @@ const ThemedSetRoot = () => {
const theme = useTheme();
useEffect(() => {
document.body.style.background = theme.background.content;
document.body.style.color = theme.defaultText;
return () => {
//