Migrate development brnach into production brunch #5

Merged
nessi merged 10 commits from dev into main 2026-02-06 17:30:14 +00:00
Showing only changes of commit aefb4234d6 - Show all commits

View File

@@ -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 &nbsp;&nbsp;&nbsp;&nbsp; (du) = du 👑 = Host
</div> </div>
</div> </div>
)} )}