all repos — caroster @ 48de52fd6ed1889ca42bf4091b370d9c6c6f9f2b

[Octree] Group carpool to your event https://caroster.io

edit button color & size, car infos character count helpers
Karian Før karian.for@gmail.com
Wed, 08 Jul 2020 18:44:15 +0200
commit

48de52fd6ed1889ca42bf4091b370d9c6c6f9f2b

parent

0baf2ba05bb17c80705472cb2b564ea9619d4417

2 files changed, 11 insertions(+), 1 deletions(-)

jump to
M app/src/containers/Car/HeaderEditing.jsapp/src/containers/Car/HeaderEditing.js

@@ -96,7 +96,12 @@

return ( <div className={classes.header}> <form onSubmit={onSave}> - <IconButton type="submit" className={classes.editBtn}> + <IconButton + size="small" + color="primary" + type="submit" + className={classes.editBtn} + > <Icon>done</Icon> </IconButton> <DateTimePicker

@@ -150,6 +155,8 @@ className={classes.textField}

label={t('car.creation.notes')} fullWidth margin="dense" + inputProps={{maxLength: 250}} + helperText={`${details.length}/250`} multiline rows={2} value={details}

@@ -208,6 +215,7 @@ editBtn: {

position: 'absolute', top: 0, right: 0, + margin: theme.spacing(1), zIndex: theme.zIndex.speedDial, }, section: {
M app/src/containers/NewCarDialog/index.jsapp/src/containers/NewCarDialog/index.js

@@ -141,6 +141,8 @@ className={classes.textField}

label={t('car.creation.notes')} fullWidth margin="dense" + inputProps={{maxLength: 250}} + helperText={`${details.length}/250`} multiline rows={4} value={details}