mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-14 08:45:30 +03:00
Fix spacing between cancle and save button
This commit is contained in:
parent
8e8ca99bd5
commit
50484fb97e
Binary file not shown.
@ -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"
|
||||
|
@ -112,7 +112,7 @@ const useStyles = makeStyles<Theme, StylesProps>((theme) => ({
|
||||
padding: theme.spacing(2, 3),
|
||||
},
|
||||
},
|
||||
newIssueButton: {
|
||||
greenButton: {
|
||||
backgroundColor: theme.palette.success.main,
|
||||
color: theme.palette.success.contrastText,
|
||||
},
|
||||
@ -315,7 +315,7 @@ function ListQuery() {
|
||||
<IfLoggedIn>
|
||||
{() => (
|
||||
<Button
|
||||
className={classes.newIssueButton}
|
||||
className={classes.greenButton}
|
||||
variant="contained"
|
||||
href="/new"
|
||||
>
|
||||
|
Loading…
Reference in New Issue
Block a user