mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
db6b737cad
* Save transactions to local storage. * Checksum more things + reset hash on network change. * Fix IHexTransaction type, grab from from tx object directly. * Refactor storage of recent transactions to use redux storage and loading. * Refactor types to a transactions types file. * Initial crack at recent transactions tab on account * Punctuation. * Transaction Status responsive behavior. * Refactor transaction helper function out to remove circular dependency. * Fix typings * Collapse subtabs to select list when too small. * s/wallet/address * Type select onChange * Get fields from current state if web3 tx
37 lines
450 B
SCSS
37 lines
450 B
SCSS
@import 'common/sass/variables';
|
|
|
|
.TxStatus {
|
|
text-align: center;
|
|
|
|
&-title {
|
|
margin-top: 0;
|
|
}
|
|
|
|
&-data {
|
|
text-align: left;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
&-loading {
|
|
padding: $space * 3 0;
|
|
}
|
|
|
|
&-error {
|
|
max-width: 620px;
|
|
margin: 0 auto;
|
|
|
|
&-title {
|
|
color: $brand-danger;
|
|
}
|
|
|
|
&-desc {
|
|
font-size: $font-size-bump;
|
|
margin-bottom: $space-md;
|
|
}
|
|
|
|
&-list {
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|