无法修复 Antd 模态高度

Mah*_*esh 7 css reactjs antd

我试图将Antd Modal 高度默认设置为 1000px但它没有被应用。请建议我可能做错的地方。下面是我的模态代码。

<Modal style={{ height: "1000px" }} className="pm" width={600} title="Select" visible={isModalVisible3} footer={null} onCancel={() =>setIsModalVisible3(false)}>
    <span>Sample Text</span>
</Modal>
Run Code Online (Sandbox Code Playgroud)

我什至添加.pm{height: 1000px;}了我的base.css文件,但没有运气

请提出解决方法。

Hen*_* Le 15

试试这个方法

<Modal
   bodyStyle={{height: 1000}}
>
   Your content
</Modal>
Run Code Online (Sandbox Code Playgroud)