В своем стиле TextField
вы переопределяете fullWidth
опору, задавая собственную ширину 200 пикселей.
textField: {
marginLeft: theme.spacing(1),
marginRight: theme.spacing(1),
width: 200
}
измените ее на:
textField: {
marginLeft: theme.spacing(1),
marginRight: theme.spacing(1),
width: '100%'
}
или
просто удалите ширину из стиля textField
textField: {
marginLeft: theme.spacing(1),
marginRight: theme.spacing(1),
}
, затем в вашем TextField используйте fullWidth=true
<TextField
id="date"
label="Birthday"
type="date"
defaultValue="2017-05-25"
className={classes.textField}
fullWidth={true}
InputLabelProps={{
shrink: true
}}
/>