From 529759fbe277810730475be53c88e01a01106d62 Mon Sep 17 00:00:00 2001 From: kvakazyambra Date: Tue, 6 Jun 2023 00:05:12 +0300 Subject: [PATCH] Fixed topic hover style on black background --- src/components/Feed/CardTopic.module.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/components/Feed/CardTopic.module.scss b/src/components/Feed/CardTopic.module.scss index 46657d54..8377f144 100644 --- a/src/components/Feed/CardTopic.module.scss +++ b/src/components/Feed/CardTopic.module.scss @@ -22,7 +22,11 @@ } .shoutTopicFloorImportant { - a:hover { - background: $link-color !important; + a:link, + a:visited { + &:hover { + background: #fff !important; + color: #000 !important; + } } }