From 58a24f7434e540790aaf729a3afef02bf382b4e1 Mon Sep 17 00:00:00 2001 From: Alejandro Gomez Date: Fri, 20 Jan 2023 09:35:19 +0100 Subject: [PATCH] fix: active note colors --- src/element/Note.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/element/Note.css b/src/element/Note.css index 035348f4..41fb2f0b 100644 --- a/src/element/Note.css +++ b/src/element/Note.css @@ -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); } }