Skip to content

Commit

Permalink
client: Align submit button in flexbox for CompletionForm.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
thomageanderson committed Feb 13, 2023
1 parent 1912efa commit 9a84a83
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,18 @@ export default function CompletionForm({
/>
<CommonOptions />
</fieldset>
<div>
<Box
component={'div'}
sx={{ display: 'flex', justifyContent: 'flex-end', padding: 1 }}
>
<Button
variant="contained"
type="submit"
endIcon={<ChevronRightIcon />}
>
Complete
</Button>
</div>
</Box>
</form>
{results.map((result, index) => (
<CompletionResults key={index} results={result} />
Expand Down

0 comments on commit 9a84a83

Please sign in to comment.