From 32b7d9c174cabe527b03492cc2bd026c2b74e36e Mon Sep 17 00:00:00 2001 From: Kai Wagner Date: Mon, 9 Feb 2026 20:44:53 +0100 Subject: [PATCH] participants wrapping fix, so the icons don't break into newlines Signed-off-by: Kai Wagner --- app/assets/stylesheets/components/topics.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/components/topics.css b/app/assets/stylesheets/components/topics.css index 5783305..95d0ef2 100644 --- a/app/assets/stylesheets/components/topics.css +++ b/app/assets/stylesheets/components/topics.css @@ -82,6 +82,7 @@ & .topic-participants { width: 250px; text-align: right; + white-space: nowrap; .topic-icon { margin: 0 4px; @@ -89,7 +90,9 @@ } .participants { - display: inline-block; + display: inline-flex; + align-items: center; + flex-wrap: nowrap; } } }