mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
32 lines
341 B
SCSS
32 lines
341 B
SCSS
.transaction-status {
|
|
display: inline;
|
|
|
|
&--unapproved {
|
|
color: $Orange-500;
|
|
}
|
|
|
|
&--failed {
|
|
color: $Red-500;
|
|
}
|
|
|
|
&--cancelled {
|
|
color: $Red-500;
|
|
}
|
|
|
|
&--dropped {
|
|
color: $Red-500;
|
|
}
|
|
|
|
&--rejected {
|
|
color: $Red-500;
|
|
}
|
|
|
|
&--pending {
|
|
color: $Orange-500;
|
|
}
|
|
|
|
&--queued {
|
|
color: $Grey-500;
|
|
}
|
|
}
|