Merge pull request #19848 from jpzwarte/fix/regression-root-to-storybook-root

Fix regression in the `#root` to `#storybook-root` change
This commit is contained in:
Norbert de Langen 2022-11-17 10:54:53 +01:00 committed by GitHub
commit 4bf9d31c0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,12 +58,12 @@ export const FramesRenderer: FC<FramesRendererProps> = ({
const active = getActive(refId);
const styles = useMemo<CSSObject>(() => {
// add #storybook-root to make the selector high enough in specificity
// add #root to make the selector high enough in specificity
return {
'#storybook-root [data-is-storybook="false"]': {
'#root [data-is-storybook="false"]': {
display: 'none',
},
'#storybook-root [data-is-storybook="true"]': {
'#root [data-is-storybook="true"]': {
display: 'block',
},
};