mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-19 15:42:41 +00:00
68e5972a03
* add route and nav tab for new module * add new module to tabs index * add signMessage to wallet interface * add signed message verification, normalize pkey sign * init Sign & Verify Message tab * reorder imports * mock out Trezor * cast to bool instead of length check * normalize ledger sign message * fix broken this context * add commented message signing to trezor wallet * correct var to start on sign tab * remove unused state var * clean up SignMessage classes * clean up VerifyMessage classes, remove unnecessary log * correct event variable types * remove unnecessary exports * remove empty classname * use implicit return * shorten signMessage method * remove unnecessary disable * tweak variable name * make better use of destructuring, remove console log * use destructured var * flatten if statement * add signMessage method to wallet reducer test
31 lines
472 B
SCSS
31 lines
472 B
SCSS
@import 'common/sass/variables';
|
|
@import 'common/sass/mixins';
|
|
|
|
.SignAndVerifyMsg {
|
|
&-header {
|
|
margin: 0;
|
|
text-align: center;
|
|
|
|
&-tab {
|
|
@include reset-button;
|
|
color: $ether-blue;
|
|
|
|
&:hover,
|
|
&:active {
|
|
opacity: 0.8;
|
|
}
|
|
|
|
&.is-active {
|
|
&,
|
|
&:hover,
|
|
&:active {
|
|
color: $text-color;
|
|
cursor: default;
|
|
opacity: 1;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|