mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-24 18:09:10 +00:00
371e6e327c
* Reorganize files to better match other components. * Initial UI for wallet buttons. * Fix leftover rebase conflict. * Wallet selection, styling, mobile handling. * Initial work on animations. * Adjusted animations. * Adjust wallet unlock forms to be more uniform. Fix view address saying 'unlock' * Adjust tooltips. * Fix embedded decrypt components. * Cover whole sign msg form with decrypt. * Give deploy contract a better unlock treatment like sign msg. * Reset decrypt component on hide / show * Unused var * Fix tooltip hover. * Fix hover lift. * Make spacing better on mobile. * Back button mobile handling. * Redesign mobile button icons. Prevent clicking through when clicking on icons. * TSCheck fixes. * Attempt to unlock MetaMask onClick, and provide existing flow with notification when unlock fails. * Get rid of outline. * Remove decrypt min height. Make view only textarea. * Add change wallet buttons to deploy contract and sign msg. * Standardize
44 lines
466 B
SCSS
44 lines
466 B
SCSS
.SignMessage {
|
|
text-align: center;
|
|
padding-top: 30px;
|
|
|
|
&-label {
|
|
float: left;
|
|
}
|
|
|
|
&-reset {
|
|
float: right;
|
|
|
|
.fa {
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
|
|
&-sign {
|
|
width: 100%;
|
|
}
|
|
|
|
&-help {
|
|
margin-top: 10px;
|
|
font-size: 13px;
|
|
font-style: italic;
|
|
}
|
|
|
|
&-inputBox {
|
|
min-height: 180px;
|
|
}
|
|
|
|
&-error {
|
|
opacity: 0;
|
|
transition: none;
|
|
|
|
&.is-showing {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
&-buy {
|
|
margin-top: 10px;
|
|
}
|
|
}
|