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
This commit is contained in:
Lucas 'Paperboy' Rose-Winters
2025-11-06 21:03:29 +11:00
parent 693dc346e8
commit 3cda7f7f52
+2 -2
View File
@@ -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;