From 94d70d96f63a5021bbd0eb932a73c229886e11a8 Mon Sep 17 00:00:00 2001 From: Deimos Date: Tue, 21 May 2019 15:50:41 -0600 Subject: [PATCH] Prevent topic content metadata from wrapping This is always weird when it wraps (especially on mobile, where it's fairly common). You end up with weird cases like having "(500" after the title and "words) on the next line. --- tildes/scss/modules/_topic.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tildes/scss/modules/_topic.scss b/tildes/scss/modules/_topic.scss index 6b4db2e..8cbbd48 100644 --- a/tildes/scss/modules/_topic.scss +++ b/tildes/scss/modules/_topic.scss @@ -78,6 +78,10 @@ align-items: center; } +.topic-content-metadata { + white-space: nowrap; +} + .topic-group { margin-right: 0.4rem; }