From acab4e5c859303be9fa9e22ebcce712dce335c4d Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sat, 20 May 2023 14:59:02 -0700 Subject: [PATCH] fix(ui): hard code the colors of the chat moderation menu button --- .../chat/ChatUserMessage/ChatUserMessage.module.scss | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss b/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss index 3773bb208..ed0b01335 100644 --- a/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss +++ b/web/components/chat/ChatUserMessage/ChatUserMessage.module.scss @@ -16,7 +16,7 @@ $p-v-size: 2px; .user { display: flex; align-items: center; - font-weight: 600; + font-weight: 600; } .message { @@ -63,16 +63,17 @@ $p-v-size: 2px; display: none; top: 5px; right: 10px; - color: var(--theme-color-components-text-on-light); + color: black; & button:focus, & button:active { display: block !important; } button { + background-color: white; border-radius: var(--theme-rounded-corners); - border-width: 0; - opacity: 0.8; + border-width: 0; + opacity: 0.8; } }