From 15c3475a4f653cd537c06e91b6bbb7cc2d9a3456 Mon Sep 17 00:00:00 2001 From: FractalParadigm Date: Sat, 15 Mar 2025 11:31:27 -0400 Subject: [PATCH] Long team names are now cutoff if they're TOO long, in tourney cards --- styles/tourney_cards.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/styles/tourney_cards.css b/styles/tourney_cards.css index 19de92b..924fc58 100644 --- a/styles/tourney_cards.css +++ b/styles/tourney_cards.css @@ -52,8 +52,12 @@ } .tourneyCardRight { + max-width: 55%; text-align: right; margin: 0; padding-left: 10px; padding-right: 10px; + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; } \ No newline at end of file