Merge pull request #102 from v0l/fix

fix: active note colors
This commit is contained in:
Kieran 2023-01-20 10:24:15 +00:00 committed by GitHub
commit 3aa1dedcb8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -144,12 +144,13 @@
.note.active > .header .reply {
color: var(--font-secondary-color);
}
.note.active > .header > .info {
color: var(--font-secondary-color);
}
.note.active > .footer > .reaction-pill {
color: var(--font-seco666ndary-color);
color: var(--font-secondary-color);
}
.note.active > .footer > .reaction-pill.reacted {
color: var(--highlight);
}
}