Skip to content

Commit

Permalink
Added margin to checkbox
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky-fleek committed Jun 27, 2022
1 parent 17d9005 commit 661867f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion source/Options/Views/Welcome/steps/SeedPhraseStep.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ const SeedPhraseStep = ({ handleNextStep, mnemonic }) => {
<SeedPhrase words={mnemonic.split(' ')} />
</Grid>
<Grid item xs={12}>
<Checkbox style={{ margin: 0 }} checked={checked} handleChange={handleChangeCheckbox} label={t('welcome.seedCheckbox')} data-testid="seedphrase-confirmation-checkbox" />
<Checkbox
style={{ margin: 0, marginRight: 10 }}
checked={checked}
handleChange={handleChangeCheckbox}
label={t('welcome.seedCheckbox')}
data-testid="seedphrase-confirmation-checkbox" />
</Grid>
<Grid item xs={12}>
<Button
Expand Down

0 comments on commit 661867f

Please sign in to comment.