Fix empty content icons on darktheme

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2019-01-17 15:15:37 +01:00
parent d59de22525
commit 71e394d9cf
No known key found for this signature in database
GPG Key ID: 7076EA9751AACDDA
1 changed files with 2 additions and 1 deletions

View File

@ -42,7 +42,8 @@ $color-border-dark: lighten($color-main-background, 14%);
// since svg icons are inverted, revert to white for the header
.header-right > * {
[class^='icon-'], [class*=' icon-'] {
>[class^='icon-'],
>[class*=' icon-'] {
filter: invert(100%);
}
}