From 082e969b4f6b464c68f6e7ebd113da17739652ed Mon Sep 17 00:00:00 2001 From: Santiago Kozak Date: Mon, 11 Sep 2023 23:20:57 -0300 Subject: [PATCH] [Glitch] Fix recent search items not handling overflows correctly Port 4b1c517e8e0527d88a56b7eea2bc5940539a8f1c to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/styles/components/search.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/javascript/flavours/glitch/styles/components/search.scss b/app/javascript/flavours/glitch/styles/components/search.scss index be35077dcd..aa54fc26db 100644 --- a/app/javascript/flavours/glitch/styles/components/search.scss +++ b/app/javascript/flavours/glitch/styles/components/search.scss @@ -78,6 +78,11 @@ font-weight: 700; color: $primary-text-color; } + + span { + overflow: inherit; + text-overflow: inherit; + } } } }