From 0b5903af7cb8c50e9acec2e90433d9ff380895b6 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 d2cfcdd09efe4914e8956d1b2211114bc7c4179a 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 be35077dc..aa54fc26d 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; + } } } }