Skip to content

Commit

Permalink
Fix dialog button margin
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasnordquist committed Jul 17, 2019
1 parent c59c64b commit d5a4d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/ConfirmationDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function ConfirmationDialog(props: { confirmationRequests: Array<ConfirmationReq
<Button ref={yesRef as any} variant="contained" onClick={confirm} color="primary" autoFocus>
Yes
</Button>
<Button ref={noRef as any} variant="contained" onClick={reject} color="secondary">
<Button ref={noRef as any} variant="contained" onClick={reject} color="secondary" style={{ marginLeft: '8px' }}>
No
</Button>
</DialogActions>
Expand Down

0 comments on commit d5a4d1e

Please sign in to comment.