From e422eab4d500cb7d1c0192bb6f637df473f79c23 Mon Sep 17 00:00:00 2001 From: Henri Bourcereau Date: Tue, 5 May 2026 20:54:24 +0200 Subject: [PATCH] fix: limit nicknames display length --- clients/web/assets/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/clients/web/assets/style.css b/clients/web/assets/style.css index a129c91..31d1fe1 100644 --- a/clients/web/assets/style.css +++ b/clients/web/assets/style.css @@ -705,6 +705,10 @@ a:hover { text-decoration: underline; } font-size: 1.05rem; color: var(--ui-ink); letter-spacing: 0.02em; + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; + min-width: 0; } .score-bars { display: flex; flex-direction: row; gap: 1.5rem; flex: 1; align-items: center; } @@ -808,7 +812,7 @@ a:hover { text-decoration: underline; } } .score-row-name { - min-width: 120px; + width: 120px; flex-shrink: 0; display: flex; align-items: baseline;