From 3cda7f7f5201be329b85d9c785e518ce801cd625 Mon Sep 17 00:00:00 2001 From: Lucas 'Paperboy' Rose-Winters Date: Thu, 6 Nov 2025 21:03:29 +1100 Subject: [PATCH] fix: move level indicator to top-right in compact userInfo layout Resolves overlap issue between long character names and level indicator in 1x2 userInfo widgets. Level now displays at top-right corner flush with container, while name remains at bottom with full width available. - Changed level container position from bottom: 0 to top: 0 - Prevents text overlap for names like 'Seol Yi-hwan Lvl 1' - Maintains clean, compact layout at 1080p and other resolutions --- style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/style.css b/style.css index e3bd1c8..38eb097 100644 --- a/style.css +++ b/style.css @@ -2129,10 +2129,10 @@ body:has(.rpg-panel.rpg-position-left) #sheld { text-overflow: ellipsis; } -/* Level container also at bottom, positioned next to name */ +/* Level container at top-right - flush with container edge */ .rpg-user-info-compact .rpg-user-level-container { position: absolute; - bottom: 0; + top: 0; right: 0; padding: 0.2rem 0.3rem; border-radius: 0;