mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 21:57:06 +01:00
bc6c60cde1
This reverts commit4d42715220
, reversing changes made tof09ab88891
.
24 lines
348 B
SCSS
24 lines
348 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-warning-default);
|
|
}
|
|
|
|
&--queued {
|
|
color: var(--color-text-alternative);
|
|
}
|
|
}
|