Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge pull request #919 from LiskHQ/913-show-passphrase-icon-intersects
Browse files Browse the repository at this point in the history
Show passphrase icon intersects with the passsphrase - Closes #913
  • Loading branch information
yasharAyari authored Oct 25, 2017
2 parents e11bd70 + daf6ba1 commit b852cfd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/passphraseInput/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class PassphraseInput extends React.Component {
return (
<div className={styles.wrapper}>
<Input label={this.props.label} required={true}
className={this.props.className}
className={`${this.props.className} ${styles.inputWrapper}`}
error={this.props.error}
value={this.props.value || ''}
type={this.state.inputType}
Expand Down
4 changes: 4 additions & 0 deletions src/components/passphraseInput/passphraseInput.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,7 @@
height: 24px;
cursor: pointer;
}

.inputWrapper input {
padding-right: 35px;
}

0 comments on commit b852cfd

Please sign in to comment.