Update host icon in GamePickerCard
Replaced the star (⭐) icon with a crown (👑) to represent the host. Adjusted labels, tooltip styles, and descriptive text accordingly for improved clarity and consistency.
This commit is contained in:
@@ -124,15 +124,15 @@ export default function GamePickerCard({
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div key={m.id} style={pillStyle(isHost, isMe)} title={label}>
|
<div key={m.id} style={pillStyle(isHost, isMe)} title={label}>
|
||||||
{isHost && <span style={{ color: stylesTokens.textGold }}>⭐</span>}
|
{isHost && <span style={{ color: stylesTokens.textGold }}>👑</span>}
|
||||||
<span>{label.replace(" ⭐", "")}</span>
|
<span>{label.replace(" 👑", "")}</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div style={{ marginTop: 6, fontSize: 11, opacity: 0.7, color: stylesTokens.textDim }}>
|
<div style={{ marginTop: 6, fontSize: 11, opacity: 0.7, color: stylesTokens.textDim }}>
|
||||||
⭐ = Host • (du) = du
|
👑 = Host
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Reference in New Issue
Block a user