mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-27 12:56:01 +01:00
8fcbebc546
* Updating account menu icon color * Updating design-tokens and making appropriate updates to extension styles * Adding more deprecated tags to colors * Adding spinner and removing todo comment * Remove comment * Updates * Updating snapshots * More color and ui updates * reverting transition change
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);
|
|
}
|
|
}
|