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:
parent
9373f51e97
commit
41974cec3b
@ -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;
|
||||
|
@ -67,7 +67,7 @@
|
||||
&-bg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: black;
|
||||
background: var(--color-text-default);
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
|
@ -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',
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user