dialog material ui change height wodth code example
Example: how to set height of material ui dialog react
import { makeStyles } from '@material-ui/core/styles';
const useStyles = makeStyles(theme => ({
dialogPaper: {
height : '400px'
},
}));
//then in your dialog
<Dialog classes={{ paper : classes.dialogPaper}} >
//...
</Dialog>