increase font size of text field

This commit is contained in:
Barry Gitarts 2018-06-27 06:46:55 -04:00
parent 0d75175db3
commit 0ab1b422ba
1 changed files with 15 additions and 1 deletions

View File

@ -43,6 +43,12 @@ const styles = theme => ({
form: {
display: 'flex',
flexDirection: 'column'
},
textFieldInput: {
fontSize: '16px'
},
textFieldFormLabel: {
fontSize: 18,
}
});
@ -61,13 +67,21 @@ const InnerForm = ({
<form onSubmit={handleSubmit} className={classes.form}>
<TextField
id="description"
label="description"
label="Enter your proposal description"
className={classes.textField}
value={values.description}
onChange={handleChange}
margin="normal"
fullWidth
error={errors.description}
InputProps={{
classes: {
input: classes.textFieldInput
},
}}
InputLabelProps={{
className: classes.textFieldFormLabel
}}
/>
<Button type="submit" variant="extendedFab" aria-label="add" className={classes.button}>Submit</Button>
</form>