1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00

Dark Mode: Ensure actionable message button colors are the same color as previously (#14271)

This commit is contained in:
David Walsh 2022-03-30 16:54:10 -05:00 committed by GitHub
parent 4ac0f82125
commit 8c7b643eac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,6 +107,11 @@
.actionable-message__action--secondary {
text-decoration: underline;
}
button {
background: var(--color-warning-default);
color: var(--color-warning-inverse);
}
}
&--danger {
@ -120,6 +125,11 @@
.actionable-message__message {
text-align: left;
}
button {
background: var(--color-error-default);
color: var(--color-error-inverse);
}
}
&--success {
@ -128,6 +138,11 @@
&::before {
background: var(--color-success-muted);
}
button {
background: var(--color-success-default);
color: var(--color-success-inverse);
}
}
&--left-aligned {