Skip to content

Commit 89e4bcf

Browse files
committed
font size hotfix
1 parent 85a4679 commit 89e4bcf

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

client/src/index.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010

1111
--hover-color: #2d364e;
1212

13-
font-size: 1.2em;
13+
font-size: .9em;
1414
}
1515

1616
*.material-icons-round {
17-
font-size: 1.3em;
17+
font-size: 1.2em;
1818
}
1919

2020
*{

client/src/menu/game/GameScreen.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,8 +156,9 @@ export default class GameScreen extends React.Component<GameScreenProps, GameScr
156156
render() {
157157
return (
158158
<div className="game-screen">
159-
<button className="leave-button" onClick={() => GAME_MANAGER.leaveGame()}>
160-
{translate("menu.button.leave")}
159+
<button className="material-icons-round leave-button" onClick={() => GAME_MANAGER.leaveGame()}>
160+
{/* {translate("menu.button.leave")} */}
161+
arrow_back
161162
</button>
162163
<div className="header">
163164
<HeaderMenu phase={GAME_MANAGER.gameState.phase}/>

0 commit comments

Comments
 (0)