From 7ca2d4e95038e78c7b3ade7da31dccda99d08bd8 Mon Sep 17 00:00:00 2001 From: Kalle <38327916+Sendouc@users.noreply.github.com> Date: Sun, 11 Jan 2026 16:53:54 +0200 Subject: [PATCH] Fix tier list maker weird text wraps when downloading an image --- app/features/tier-list-maker/components/TierRow.module.css | 4 +--- .../tier-list-maker/routes/tier-list-maker.module.css | 2 ++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/features/tier-list-maker/components/TierRow.module.css b/app/features/tier-list-maker/components/TierRow.module.css index 3ad05ef20..eeb3b19dc 100644 --- a/app/features/tier-list-maker/components/TierRow.module.css +++ b/app/features/tier-list-maker/components/TierRow.module.css @@ -26,9 +26,7 @@ .tierName { color: var(--button-text); line-height: 1.2; - max-width: 90px; - overflow-wrap: break-word; - word-wrap: break-word; + white-space: nowrap; } .popupContent { diff --git a/app/features/tier-list-maker/routes/tier-list-maker.module.css b/app/features/tier-list-maker/routes/tier-list-maker.module.css index c34eead1c..48ddf568d 100644 --- a/app/features/tier-list-maker/routes/tier-list-maker.module.css +++ b/app/features/tier-list-maker/routes/tier-list-maker.module.css @@ -67,6 +67,7 @@ font-weight: var(--bold); color: var(--text-lighter); text-transform: lowercase; + white-space: nowrap; } .authorInfo { @@ -79,4 +80,5 @@ font-weight: var(--bold); font-size: var(--fonts-xs); color: var(--text); + white-space: nowrap; }