ant-design/components/drawer/demo/render-in-current.md
Arnaud Benhamdine 33e06a2b92
chore(Drawer): Improve warning message wording and demo doc (#39207)
* Improve warning message wording

* Improve wording in demo

* Fix test
2022-12-03 19:36:03 +08:00

32 lines
875 B
Markdown

## zh-CN
渲染在当前 dom 里。自定义容器,查看 `getContainer`
注意:在 v5 中 `style``className` 迁移至 Drawer 面板上与 Modal 保持一致,原 `style``className` 替换为 `rootStyle``rootClassName`
## en-US
Render in current dom. custom container, check `getContainer`.
Note: `style` and `className` props are moved to Drawer panel in v5 which is aligned with Modal component. Original `style` and `className` props are replaced by `rootStyle` and `rootClassName`.
```css
.site-drawer-render-in-current-wrapper {
position: relative;
height: 200px;
padding: 48px;
overflow: hidden;
text-align: center;
background: #fafafa;
border: 1px solid #ebedf0;
border-radius: 2px;
}
```
<style>
[data-theme="dark"] .site-drawer-render-in-current-wrapper {
background: #000;
border: 1px solid #303030;
}
</style>