1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Dark Mode : Connected account popover (#13932)

This commit is contained in:
Guillaume Roux 2022-03-17 19:23:56 +01:00 committed by GitHub
parent 9373f51e97
commit 41974cec3b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 3 deletions

View File

@ -21,7 +21,7 @@
justify-content: space-between;
align-items: center;
cursor: pointer;
color: #24292e;
color: var(--color-text-default);
button {
font-size: $font-size-paragraph;

View File

@ -67,7 +67,7 @@
&-bg {
width: 100%;
height: 100%;
background: black;
background: var(--color-text-default);
opacity: 0.2;
}

View File

@ -6,6 +6,7 @@ import { useI18nContext } from '../../../hooks/useI18nContext';
import Box from '../box';
import {
ALIGN_ITEMS,
COLORS,
FLEX_DIRECTION,
JUSTIFY_CONTENT,
} from '../../../helpers/constants/design-system';
@ -14,7 +15,7 @@ const defaultHeaderProps = {
padding: [6, 4, 4],
display: 'flex',
flexDirection: FLEX_DIRECTION.COLUMN,
backgroundColor: 'white',
backgroundColor: COLORS.BACKGROUND_DEFAULT,
borderRadius: 'xl',
};