From 4ed27a9a5f4f7501106f1d6a7b5b6a00c684edf9 Mon Sep 17 00:00:00 2001 From: Sayam Samal Date: Thu, 19 Sep 2024 22:53:43 +0530 Subject: [PATCH] tooltips: Fix hotkey hints wrapping when next to longer tooltip labels. Earlier, mostly in non-English languages, the tooltip labels would force the tooltip hotkey hints to wrap. This commit adds the `white-space: nowrap` property to ensure that the hotkey hint texts are forced to be in a single line. --- web/styles/tooltips.css | 1 + 1 file changed, 1 insertion(+) diff --git a/web/styles/tooltips.css b/web/styles/tooltips.css index e3daf50588..0d20f0b4f7 100644 --- a/web/styles/tooltips.css +++ b/web/styles/tooltips.css @@ -92,6 +92,7 @@ color: hsl(225deg 100% 84%); padding: 0 5px; text-align: center; + white-space: nowrap; } .stream-privacy-type-icon {