From 8550cadeadf6cac77f25d2f0d1ab257ddee7475d Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Thu, 2 Apr 2026 22:14:10 +0300 Subject: [PATCH] Prevent not link room headers not styled as such when hovered --- app/components/layout/ChatSidebar.module.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/layout/ChatSidebar.module.css b/app/components/layout/ChatSidebar.module.css index 05fb6d7ee..5007805ec 100644 --- a/app/components/layout/ChatSidebar.module.css +++ b/app/components/layout/ChatSidebar.module.css @@ -158,7 +158,7 @@ border-radius: var(--radius-field); transition: background-color 0.15s; - &:hover { + &:is(a):hover { background-color: var(--color-bg-higher); } }