27 lines
607 B
HTML
27 lines
607 B
HTML
<style>
|
|
/**
|
|
* Temp approach for showing local overlays that flow out of their container
|
|
* Ideally, this would be configurable in Preview:
|
|
* https://github.com/storybookjs/storybook/blob/next/lib/components/src/blocks/Preview.ts
|
|
*/
|
|
|
|
.sbdocs.sbdocs-preview {
|
|
overflow: initial;
|
|
position: relative;
|
|
z-index: unset;
|
|
}
|
|
|
|
.sbdocs.sbdocs-preview > div:first-child {
|
|
z-index: unset;
|
|
}
|
|
|
|
.sbdocs.sbdocs-preview > div > div {
|
|
overflow: initial;
|
|
z-index: unset;
|
|
}
|
|
|
|
.sbdocs.sbdocs-preview > div > div [scale='1'] {
|
|
z-index: unset;
|
|
transform: none;
|
|
}
|
|
</style>
|