1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Styling for dropped.

This commit is contained in:
Dan 2018-03-13 21:11:50 -02:30
parent d6e4d2e80d
commit e293b6349c
2 changed files with 5 additions and 0 deletions

View File

@ -253,6 +253,7 @@ TxListItem.prototype.render = function () {
className: classnames('tx-list-status', {
'tx-list-status--rejected': transactionStatus === 'rejected',
'tx-list-status--failed': transactionStatus === 'failed',
'tx-list-status--dropped': transactionStatus === 'dropped',
}),
},
transactionStatus,

View File

@ -236,6 +236,10 @@
.tx-list-status--failed {
color: $monzo;
}
.tx-list-status--dropped {
opacity: 0.5;
}
}
.tx-list-item {