lion/.storybook/preview-head.html
Thijs Louisse 01a798e59e feat(combobox): new package combobox
Co-authored-by: Joren Broekema <Joren.Broekema@ing.com>
2020-09-30 19:33:34 +02:00

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>