From 87d9d02360408bcfa5f28b3e73df714888b5a136 Mon Sep 17 00:00:00 2001 From: TakosThings <20344790+TakosThings@users.noreply.github.com> Date: Thu, 27 Jun 2024 17:36:24 +0930 Subject: [PATCH] Fix connection status text not appearing --- src/modules/main/channels/_rtc.scss | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/modules/main/channels/_rtc.scss b/src/modules/main/channels/_rtc.scss index 314a1a7..e1e576a 100644 --- a/src/modules/main/channels/_rtc.scss +++ b/src/modules/main/channels/_rtc.scss @@ -67,7 +67,7 @@ } // Icons -html[lang^="en-"].theme-dark .panels_a4d4d9 .button_dd4f85:not(.rtcConnectionStatusLabel_c0cb95) { +html[lang^="en-"].theme-dark .panels_a4d4d9 .button_dd4f85{ &::before{ @include FontIconFluent; font-size: 16px; @@ -76,3 +76,11 @@ html[lang^="en-"].theme-dark .panels_a4d4d9 .button_dd4f85:not(.rtcConnectionSta display: none; } } + +// Fix connection status text not appearing +.rtcConnectionStatus_c02c63 .contents_dd4f85{ + display: block !important; + .rtcConnectionStatusLabel_c02c63{ + font-weight: 500; + } +}