1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 14:15:06 +01:00
metamask-extension/ui/components/app/transaction-status/index.scss
Mark Stacey 925a19fa4a Revert "Merge pull request #14912 from MetaMask/Version-v10.16.0"
This reverts commit f09ab88891, reversing
changes made to effc761e0e.

This is being temporarily reverted to make it easier to release an
urgent fix for v10.15.1.
2022-06-28 10:41:47 -02:30

24 lines
350 B
SCSS

.transaction-status {
display: inline;
&--confirmed {
color: var(--color-success-default);
}
&--failed,
&--cancelled,
&--dropped,
&--rejected {
color: var(--color-error-default);
}
&--unapproved,
&--pending {
color: var(--color-secondary-default);
}
&--queued {
color: var(--color-text-alternative);
}
}