Skip to content

Commit

Permalink
Merge pull request #1895 from CityOfZion/feature/minor-style-updates-…
Browse files Browse the repository at this point in the history
…to-release

feature: minor style updates to release
  • Loading branch information
comountainclimber authored Jul 22, 2019
2 parents f2422e1 + 6094411 commit 3c1d847
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,11 @@ class CreateImportWalletForm extends React.Component<Props, State> {
return (
<div id="createWallet" className={styles.flexContainer}>
<form
className={styles.createWalletForm}
className={
option === 'IMPORT'
? styles.importWalletForm
: styles.createWalletForm
}
onSubmit={this.createWalletAccount}
>
{option === 'IMPORT' && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@
flex: 1;
}

.importWalletForm {
@extend .createWalletForm;
margin-top: -24px;
}

.loginButtonMargin {
margin-top: auto;
margin-bottom: 50px;
margin-top: 24px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const IMPORT_OPTIONS = {
RECOVER_WALLET: {
render: (props: Props) => (
<Fragment>
<p>
<p className={styles.importRecoveryInstructions}>
Upload a JSON wallet recovery file here to add your accounts to Neon.
This option is also available on the Settings page.
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,14 @@
width: 500px;
align-items: center;
margin-top: 30px;
height: 100%;
}

.buttonContainer {
height: 200px;
margin-bottom: 260px;
}

.importRecoveryInstructions {
margin: -24px 0 48px;
}

0 comments on commit 3c1d847

Please sign in to comment.