diff options
author | Sascha <GlancingMind@outlook.com> | 2021-03-03 18:14:37 +0100 |
---|---|---|
committer | Sascha <GlancingMind@outlook.com> | 2021-03-04 20:54:04 +0100 |
commit | 50484fb97efd62aceafdbb78ed575e94ff7bb1fd (patch) | |
tree | 2070535e477d946df8818817ff84f967e7467524 /webui/src/components/BugTitleForm | |
parent | 8e8ca99bd5f72de60f6e0e1b334f33312cab5388 (diff) | |
download | git-bug-50484fb97efd62aceafdbb78ed575e94ff7bb1fd.tar.gz |
Fix spacing between cancle and save button
Diffstat (limited to 'webui/src/components/BugTitleForm')
-rw-r--r-- | webui/src/components/BugTitleForm/.BugTitleForm.tsx.swp | bin | 20480 -> 0 bytes | |||
-rw-r--r-- | webui/src/components/BugTitleForm/BugTitleForm.tsx | 4 |
2 files changed, 4 insertions, 0 deletions
diff --git a/webui/src/components/BugTitleForm/.BugTitleForm.tsx.swp b/webui/src/components/BugTitleForm/.BugTitleForm.tsx.swp Binary files differdeleted file mode 100644 index 125bed11..00000000 --- a/webui/src/components/BugTitleForm/.BugTitleForm.tsx.swp +++ /dev/null diff --git a/webui/src/components/BugTitleForm/BugTitleForm.tsx b/webui/src/components/BugTitleForm/BugTitleForm.tsx index 97025302..08a1ac90 100644 --- a/webui/src/components/BugTitleForm/BugTitleForm.tsx +++ b/webui/src/components/BugTitleForm/BugTitleForm.tsx @@ -49,6 +49,9 @@ const useStyles = makeStyles((theme) => ({ backgroundColor: theme.palette.success.main, color: theme.palette.success.contrastText, }, + saveButton: { + marginRight: theme.spacing(1), + }, })); interface Props { @@ -117,6 +120,7 @@ function BugTitleForm({ bug }: Props) { /> <div className={classes.editButtonContainer}> <Button + className={classes.saveButton} size="small" variant="contained" type="submit" |