mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Make the login screen's Restore and Import links accessible (#9746)
This commit is contained in:
parent
107ef3559c
commit
5f828b4f41
@ -40,6 +40,9 @@
|
||||
|
||||
&__link {
|
||||
cursor: pointer;
|
||||
background-color: unset;
|
||||
color: unset;
|
||||
font-size: unset;
|
||||
|
||||
&--import {
|
||||
color: $ecstasy;
|
||||
|
@ -168,15 +168,15 @@ export default class UnlockPage extends Component {
|
||||
</form>
|
||||
{this.renderSubmitButton()}
|
||||
<div className="unlock-page__links">
|
||||
<div className="unlock-page__link" onClick={() => onRestore()}>
|
||||
<button className="unlock-page__link" onClick={() => onRestore()}>
|
||||
{t('restoreFromSeed')}
|
||||
</div>
|
||||
<div
|
||||
</button>
|
||||
<button
|
||||
className="unlock-page__link unlock-page__link--import"
|
||||
onClick={() => onImport()}
|
||||
>
|
||||
{t('importUsingSeed')}
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user