mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-09 18:45:38 +00:00
7fe2888633
* Create reusable password toggle component, convert private key and mnemonic to it. * Convert keystore modal to togglable password. * Remove the restore keystore tab code (defunct). * Replace wallet info with togglable password. Allow for controlled togglable password. * Convert last password component (generate) and cleanup unneeded files and styles.
14 lines
190 B
SCSS
14 lines
190 B
SCSS
@import 'common/sass/variables';
|
|
|
|
.TogglablePassword {
|
|
&-toggle {
|
|
cursor: pointer;
|
|
color: $gray;
|
|
transition: $transition;
|
|
|
|
&:hover {
|
|
color: $gray-darker;
|
|
}
|
|
}
|
|
}
|