summaryrefslogtreecommitdiff
path: root/frontend/src/components/game-browser/GameList.jsx
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2018-06-10 18:33:01 +0200
committerJoffrey BION <joffrey.bion@gmail.com>2018-06-10 18:33:01 +0200
commitd7551f562d6b316100ea0aee285624b531b5648f (patch)
tree7157c44e7b3e9fca2a2d50d2fe1b52c7019d68a0 /frontend/src/components/game-browser/GameList.jsx
parentFinish moving components out of /scenes package (diff)
downloadseven-wonders-d7551f562d6b316100ea0aee285624b531b5648f.tar.gz
seven-wonders-d7551f562d6b316100ea0aee285624b531b5648f.tar.bz2
seven-wonders-d7551f562d6b316100ea0aee285624b531b5648f.zip
Improve lobby's style
Diffstat (limited to 'frontend/src/components/game-browser/GameList.jsx')
-rw-r--r--frontend/src/components/game-browser/GameList.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/components/game-browser/GameList.jsx b/frontend/src/components/game-browser/GameList.jsx
index 08ce92e9..6363cff2 100644
--- a/frontend/src/components/game-browser/GameList.jsx
+++ b/frontend/src/components/game-browser/GameList.jsx
@@ -15,7 +15,7 @@ type GameListProps = {
};
const GameListPresenter = ({ games, joinGame }: GameListProps) => (
- <table className='pt-html-table pt-interactive'>
+ <table className='pt-html-table'>
<thead>
<GameListHeaderRow />
</thead>
bgstack15