material ui chaging the size of a dialog
<Dialog>
fullWidth={true}
maxWidth={'md'} // 'sm' || 'md' || 'lg' || 'xl'
</Dialog>
material ui chaging the size of a dialog
<Dialog>
fullWidth={true}
maxWidth={'md'} // 'sm' || 'md' || 'lg' || 'xl'
</Dialog>
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>
material ui dialog width
<Dialog>
fullWidth={true}
maxWidth={'lg'} ------- 'sm' 'md' 'lg' 'xl'
</Dialog>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us