From 8b90b1d1b12bdae4f1fa06caec5cd5619dc83437 Mon Sep 17 00:00:00 2001 From: Alexander Tseung Date: Tue, 6 Feb 2018 22:03:37 -0800 Subject: Remove accessing PropTypes from main React package --- mascara/src/app/first-time/unique-image-screen.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'mascara/src/app/first-time/unique-image-screen.js') diff --git a/mascara/src/app/first-time/unique-image-screen.js b/mascara/src/app/first-time/unique-image-screen.js index ef6bd28ab..46448aacf 100644 --- a/mascara/src/app/first-time/unique-image-screen.js +++ b/mascara/src/app/first-time/unique-image-screen.js @@ -1,4 +1,5 @@ -import React, {Component, PropTypes} from 'react' +import React, { Component } from 'react' +import PropTypes from 'prop-types' import {connect} from 'react-redux' import Identicon from '../../../../ui/app/components/identicon' import Breadcrumbs from './breadcrumbs' -- cgit From 7fb27cf0c7a5c8eb2aa492ced603873996537c81 Mon Sep 17 00:00:00 2001 From: Alexander Tseung Date: Fri, 16 Mar 2018 08:50:21 -0700 Subject: Update margins for consistency in first time flow (#3588) --- mascara/src/app/first-time/unique-image-screen.js | 34 +++++++++++++---------- 1 file changed, 19 insertions(+), 15 deletions(-) (limited to 'mascara/src/app/first-time/unique-image-screen.js') 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 ( -
- -
Your unique account image
-
- This image was programmatically generated for you by your new account number. +
+
+
+ +
Your unique account image
+
+ This image was programmatically generated for you by your new account number. +
+
+ You’ll see this image everytime you need to confirm a transaction. +
+ + +
-
- You’ll see this image everytime you need to confirm a transaction. -
- -
) } -- cgit