Skip to content

Commit

Permalink
Fix styles on 'import account' page, update help link (#6700)
Browse files Browse the repository at this point in the history
* Fix styles on 'import account' page, update help link

* Update changelog
  • Loading branch information
xuhcc authored and danjm committed Jun 17, 2019
1 parent 6fb0d4a commit a473700
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Current Develop Branch

- [#6700](https://github.com/MetaMask/metamask-extension/pull/6700): Fix styles on 'import account' page, update help link

## 6.6.1 Thu Jun 06 2019

- [#6691](https://github.com/MetaMask/metamask-extension/pull/6691): Revert "Improve ENS Address Input" to fix bugs on input field on non-main networks.
Expand Down
1 change: 1 addition & 0 deletions ui/app/css/itcss/components/new-account.scss
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
flex-flow: column;
align-items: center;
margin-top: 29px;
width: 100%;
}

&__buttons {
Expand Down
6 changes: 4 additions & 2 deletions ui/app/pages/create-account/import-account/json.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ const actions = require('../../../store/actions')
const FileInput = require('react-simple-file-input').default
const { DEFAULT_ROUTE } = require('../../../helpers/constants/routes')
const { getMetaMaskAccounts } = require('../../../selectors/selectors')
const HELP_LINK = 'https://support.metamask.io/kb/article/7-importing-accounts'
import Button from '../../../components/ui/button'

const HELP_LINK = 'https://metamask.zendesk.com/hc/en-us/articles/360015489351-Importing-Accounts'

class JsonImportSubview extends Component {
constructor (props) {
super(props)
Expand All @@ -37,10 +38,11 @@ class JsonImportSubview extends Component {
readAs: 'text',
onLoad: this.onLoad.bind(this),
style: {
margin: '20px 0px 12px 34%',
padding: '20px 0px 12px 15%',
fontSize: '15px',
display: 'flex',
justifyContent: 'center',
width: '100%',
},
}),

Expand Down

0 comments on commit a473700

Please sign in to comment.