Skip to content

Commit

Permalink
Fixed word breaking
Browse files Browse the repository at this point in the history
  • Loading branch information
238SAMIxD committed Sep 27, 2023
1 parent efced55 commit 832c6e1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/gfx/ingame.css
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ body {
background: -webkit-linear-gradient(#978867, #464030);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
white-space: nowrap;
}

#tournament .phase {
Expand Down
2 changes: 1 addition & 1 deletion frontend/gfx/ingame.js
Original file line number Diff line number Diff line change
Expand Up @@ -639,7 +639,7 @@ function updateSettings(e) {
}
if (e.showTournament !== showTournament) {
showTournament = e.showTournament
document.querySelector('#tournament').style.display = e.showTournament ? 'block' : 'none'
document.querySelector('#tournament').style.display = e.showTournament ? 'flex' : 'none'
}

if (showScoreBoard !== e.scoreboard.active) {
Expand Down

0 comments on commit 832c6e1

Please sign in to comment.