mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 14:15:06 +01:00
925a19fa4a
This reverts commitf09ab88891
, reversing changes made toeffc761e0e
. This is being temporarily reverted to make it easier to release an urgent fix for v10.15.1.
24 lines
350 B
SCSS
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);
|
|
}
|
|
}
|