MyCrypto/common/components/TogglablePassword.scss
William O'Beirne 7fe2888633 Passwordify Private Key & Mnemonic Inputs (#925)
* 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.
2018-01-26 16:11:52 -06:00

14 lines
190 B
SCSS

@import 'common/sass/variables';
.TogglablePassword {
&-toggle {
cursor: pointer;
color: $gray;
transition: $transition;
&:hover {
color: $gray-darker;
}
}
}