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

Dark Mode: Permissions container (#14077)

This commit is contained in:
David Walsh 2022-03-23 10:40:36 -05:00 committed by GitHub
parent 0ee7b0412b
commit 09830ac183
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 13 deletions

View File

@ -23,14 +23,6 @@
}
}
&__header {
display: flex;
flex-direction: column;
align-items: flex-end;
border-bottom: 1px solid var(--geyser);
padding: 9px;
}
&__title {
@include H4;
@ -43,13 +35,13 @@
display: flex;
overflow-y: auto;
flex-direction: column;
color: #7c808e;
color: var(--color-text-default);
padding-left: 24px;
padding-right: 24px;
a,
a:hover {
color: var(--dodger-blue);
color: var(--color-primary-default);
}
&__requested {
@ -69,7 +61,7 @@
@include H6;
margin-left: 16px;
color: var(--Black-100);
color: var(--color-text-default);
}
}
}
@ -88,7 +80,7 @@
&__permissions-header {
@include H6;
color: #6a737d;
color: var(--color-text-default);
}
&__permissions-container {

View File

@ -75,5 +75,4 @@
--athens-grey: #e9edf0;
--geyser: #d2d8dd;
--mid-gray: #5b5d67;
--dodger-blue: #3099f2;
}