FIX: Correct color variable to work with automatic dark mode (#2)

This commit is contained in:
David Taylor 2020-11-27 18:13:46 +00:00 committed by GitHub
parent c4ae5cd32c
commit d9ed154f98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@
}
.group-filter:not(.active) .select-kit-header {
color: $primary-high;
color: var(--primary-high);
}
}
@ -61,13 +61,13 @@
.user-card-container {
width: 100%;
background-color: $secondary;
background-color: var(--secondary);
box-shadow: shadow("card");
margin-bottom: auto;
}
.user-card-directory-footer {
background-color: $secondary;
background-color: var(--secondary);
padding: 0px 10px 10px 10px;
display: flex;
flex-wrap: wrap;
@ -86,7 +86,7 @@
.d-icon {
margin-right: 0.2em;
color: $primary-medium;
color: var(--primary-medium);
}
}
}