Adapt header icon to dark mode

This commit is contained in:
N-Pex 2023-03-14 11:29:57 +01:00
parent 610d35174c
commit 5249667f2e
3 changed files with 9 additions and 3 deletions

View file

@ -8,10 +8,12 @@ $admin-fg: white;
body {
--v-background-color: white;
--v-foreground-color: black;
--v-secondary-color: #242424;
--v-divider-color: #eeeeee;
&.dark {
--v-background-color: black;
--v-foreground-color: white;
--v-secondary-color: #c0c0c0;
--v-divider-color: rgba(221, 221, 221, 0.1);
}
}
@ -86,6 +88,10 @@ body {
margin-bottom: $chat-standard-padding-xs;
}
.close-button .v-icon {
color: var(--v-secondary-color);
}
.icon-dropdown {
margin: 0px 8px;
}