1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Dark Mode: Transaction statuses (#14092)

This commit is contained in:
David Walsh 2022-03-23 21:28:01 -05:00 committed by GitHub
parent 0df365f895
commit e152eaf27b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,26 +5,14 @@
color: var(--color-success-default);
}
&--unapproved {
color: var(--color-secondary-default);
}
&--failed {
color: var(--color-error-default);
}
&--cancelled {
color: var(--color-error-default);
}
&--dropped {
color: var(--color-error-default);
}
&--failed,
&--cancelled,
&--dropped,
&--rejected {
color: var(--color-error-default);
}
&--unapproved,
&--pending {
color: var(--color-secondary-default);
}