aboutsummaryrefslogtreecommitdiffstats
path: root/mascara/src/app/first-time/unique-image-screen.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@users.noreply.github.com>2018-03-16 23:50:21 +0800
committerGitHub <noreply@github.com>2018-03-16 23:50:21 +0800
commit7fb27cf0c7a5c8eb2aa492ced603873996537c81 (patch)
tree2ae2cbf88efd4d405bb42f87628af50b31e8e9f6 /mascara/src/app/first-time/unique-image-screen.js
parente2f340b3242c436bd4d7bc802662ae6f9f195899 (diff)
downloadtangerine-wallet-browser-7fb27cf0c7a5c8eb2aa492ced603873996537c81.tar.gz
tangerine-wallet-browser-7fb27cf0c7a5c8eb2aa492ced603873996537c81.tar.zst
tangerine-wallet-browser-7fb27cf0c7a5c8eb2aa492ced603873996537c81.zip
Update margins for consistency in first time flow (#3588)
Diffstat (limited to 'mascara/src/app/first-time/unique-image-screen.js')
-rw-r--r--mascara/src/app/first-time/unique-image-screen.js34
1 files changed, 19 insertions, 15 deletions
diff --git a/mascara/src/app/first-time/unique-image-screen.js b/mascara/src/app/first-time/unique-image-screen.js
index 46448aacf..ede17ee3d 100644
--- a/mascara/src/app/first-time/unique-image-screen.js
+++ b/mascara/src/app/first-time/unique-image-screen.js
@@ -12,22 +12,26 @@ class UniqueImageScreen extends Component {
render () {
return (
- <div className="unique-image">
- <Identicon address={this.props.address} diameter={70} />
- <div className="unique-image__title">Your unique account image</div>
- <div className="unique-image__body-text">
- This image was programmatically generated for you by your new account number.
+ <div className="first-view-main-wrapper">
+ <div className="first-view-main">
+ <div className="unique-image">
+ <Identicon address={this.props.address} diameter={70} />
+ <div className="unique-image__title">Your unique account image</div>
+ <div className="unique-image__body-text">
+ This image was programmatically generated for you by your new account number.
+ </div>
+ <div className="unique-image__body-text">
+ You’ll see this image everytime you need to confirm a transaction.
+ </div>
+ <button
+ className="first-time-flow__button"
+ onClick={this.props.next}
+ >
+ Next
+ </button>
+ <Breadcrumbs total={3} currentIndex={1} />
+ </div>
</div>
- <div className="unique-image__body-text">
- You’ll see this image everytime you need to confirm a transaction.
- </div>
- <button
- className="first-time-flow__button"
- onClick={this.props.next}
- >
- Next
- </button>
- <Breadcrumbs total={3} currentIndex={1} />
</div>
)
}