summaryrefslogtreecommitdiff
path: root/frontend/src/components/game-browser/PlayerCount.jsx
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2019-05-02 21:59:19 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2019-05-02 22:10:01 +0200
commit391d33e6c6d52b5595fd2f9d881c8e4ef9b11312 (patch)
treed4d9bb91ebf343d2f2848f2d2cfc2752d75ac8d7 /frontend/src/components/game-browser/PlayerCount.jsx
parentAllow no frontend tests (diff)
downloadseven-wonders-391d33e6c6d52b5595fd2f9d881c8e4ef9b11312.tar.gz
seven-wonders-391d33e6c6d52b5595fd2f9d881c8e4ef9b11312.tar.bz2
seven-wonders-391d33e6c6d52b5595fd2f9d881c8e4ef9b11312.zip
Upgrade Blueprintjs to v3
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