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

Dark Mode: Fix Actionable Messages (#14361)

This commit is contained in:
David Walsh 2022-04-05 13:51:05 -05:00 committed by GitHub
parent 2cd1472e3a
commit d8fd5f68ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -108,7 +108,7 @@
text-decoration: underline; text-decoration: underline;
} }
button { .actionable-message__actions button {
background: var(--color-warning-default); background: var(--color-warning-default);
color: var(--color-warning-inverse); color: var(--color-warning-inverse);
} }
@ -126,7 +126,7 @@
text-align: left; text-align: left;
} }
button { .actionable-message__actions button {
background: var(--color-error-default); background: var(--color-error-default);
color: var(--color-error-inverse); color: var(--color-error-inverse);
} }
@ -139,7 +139,7 @@
background: var(--color-success-muted); background: var(--color-success-muted);
} }
button { .actionable-message__actions button {
background: var(--color-success-default); background: var(--color-success-default);
color: var(--color-success-inverse); color: var(--color-success-inverse);
} }