From f80fb02ebbe8af46518ca1ae314f2c4b04f0ba12 Mon Sep 17 00:00:00 2001 From: Dan Wallis Date: Fri, 28 Nov 2025 17:54:39 +0000 Subject: [PATCH] Avoid overflow in foreign power level outputs When the text reads 'Above Average (137)', it does not fit within 8rem and therefore wraps to two lines. There is enough space for this text to be wider within the layout. (Tested at various widths and layout break-points.) 8rem is too narrow. 9rem is too narrow. 10rem is just wide enough, but does not have much room to grow. 12rem was chosen as a value which fits well in the layouts available (at different break-points), and might work for other languages too. I have not tested with languages other than English. --- src/evolve.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/evolve.less b/src/evolve.less index 891f71797..3d7546170 100644 --- a/src/evolve.less +++ b/src/evolve.less @@ -3223,7 +3223,7 @@ a { .glevel { display: inline-block; - width: 8rem; + width: 12rem; } button {