私はカスタムの幅との対話のための材料-UIの例で行くよ:私はしかし、私はWAN、私はmaxWidth
をオーバーライドしてきたので、私はカスタム絶頂を設定することができるよということを知っているmaterial-uiでダイアログに高さを設定するにはどうすればよいですか?
const customContentStyle = {
width: '100%',
maxWidth: 'none',
};
// some omitted code
<Dialog
title="Dialog With Custom Width"
actions={actions}
modal={true}
contentStyle={customContentStyle}
open={this.state.open}
>
This dialog spans the entire width of the screen.
</Dialog>
私はダイアログの高さのサイズを変更できるように高さで同じことをすることができません。 maxHeight
をnoneに設定してheight
に設定しようとしましたが、私はそれに幸運を祈ることはできませんでした。