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

Dark Mode: Select Account Hardware Wallets (#13917)

This commit is contained in:
David Walsh 2022-03-15 14:35:23 -05:00 committed by GitHub
parent 99da6a9283
commit cd28e64539
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -178,11 +178,11 @@
} }
&__item:nth-of-type(even) { &__item:nth-of-type(even) {
background-color: #fbfbfb; background-color: var(--color-background-default);
} }
&__item:nth-of-type(odd) { &__item:nth-of-type(odd) {
background: rgba(0, 0, 0, 0.03); background: var(--color-background-alternative);
} }
&__item:hover { &__item:hover {
@ -236,10 +236,10 @@
&__button { &__button {
@include H6; @include H6;
background: #fff; background: var(--color-background-default);
height: 19px; height: 19px;
display: flex; display: flex;
color: #33a4e7; color: var(--color-primary-default);
border: none; border: none;
min-width: 46px; min-width: 46px;
margin-right: 0; margin-right: 0;
@ -292,7 +292,7 @@
a { a {
@include H6; @include H6;
color: #2f9ae0; color: var(--color-primary-default);
cursor: pointer; cursor: pointer;
} }
} }