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:
@@ -2129,10 +2129,10 @@ body:has(.rpg-panel.rpg-position-left) #sheld {
|
|||||||
text-overflow: ellipsis;
|
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 {
|
.rpg-user-info-compact .rpg-user-level-container {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
bottom: 0;
|
top: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
padding: 0.2rem 0.3rem;
|
padding: 0.2rem 0.3rem;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user