summaryrefslogtreecommitdiff
path: root/frontend/src/components/game-browser/PlayerCount.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/game-browser/PlayerCount.jsx')
-rw-r--r--frontend/src/components/game-browser/PlayerCount.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/components/game-browser/PlayerCount.jsx b/frontend/src/components/game-browser/PlayerCount.jsx
index aa9d1d2f..9a5306d6 100644
--- a/frontend/src/components/game-browser/PlayerCount.jsx
+++ b/frontend/src/components/game-browser/PlayerCount.jsx
@@ -8,6 +8,6 @@ type PlayerCountProps = {
}
export const PlayerCount = ({nbPlayers}: PlayerCountProps) => <div title='Number of players'>
- <Icon icon="people" title={false} />
- <span className='playerCount'> {nbPlayers}</span>
+ <Icon className="playerCountIcon" icon="people" title={false} />
+ <span className="playerCount"> {nbPlayers}</span>
</div>;
bgstack15