mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Reverted a change to be able to use side by side backgrounds
This commit is contained in:
parent
c135e71079
commit
5450a8e6ae
@ -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 () => {
|
||||
//
|
||||
|
Loading…
x
Reference in New Issue
Block a user