style(ui): center user avatar in Status tab
Fixed alignment of user portrait in the Status tab. The avatar was previously aligned to the left side of its container. Change: - Added justify-content: center to the avatar's flex container - Avatar now centered horizontally (align-items already centered it vertically) Before: Avatar stuck to left edge of its space After: Avatar centered in its allocated space File: src/systems/rendering/userStats.js:56
This commit is contained in:
@@ -53,7 +53,7 @@ export function renderUserStats() {
|
|||||||
const html = `
|
const html = `
|
||||||
<div class="rpg-stats-content">
|
<div class="rpg-stats-content">
|
||||||
<div class="rpg-stats-left">
|
<div class="rpg-stats-left">
|
||||||
<div style="display: flex; gap: clamp(4px, 0.8vh, 8px); align-items: center; flex-shrink: 0;">
|
<div style="display: flex; gap: clamp(4px, 0.8vh, 8px); align-items: center; justify-content: center; flex-shrink: 0;">
|
||||||
<img src="${userPortrait}" alt="${userName}" class="rpg-user-portrait" onerror="this.style.opacity='0.5';this.onerror=null;" />
|
<img src="${userPortrait}" alt="${userName}" class="rpg-user-portrait" onerror="this.style.opacity='0.5';this.onerror=null;" />
|
||||||
</div>
|
</div>
|
||||||
<div class="rpg-stats-grid">
|
<div class="rpg-stats-grid">
|
||||||
|
|||||||
Reference in New Issue
Block a user