Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/Team.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const Team = ({
}
)}
>
<h3 className="capitalize font-mono font-bold">{t(team)}</h3>
<h3 className="capitalize font-bold">{t(team)}</h3>
<span className="text-sm font-bold">
{maxScore && `${score}/${maxScore} ${t("cards", "cards")}`}
</span>
Expand Down
2 changes: 1 addition & 1 deletion pages/[gameId].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export default () => {
<div className="flex px-2 lg:w-6/12 lg:p-6 lg:flex-grow">
<GameBoard />
</div>
<div className="flex-grow h-40 p-2 lg:w-4/12 lg:p-6 lg:h-full lg:flex-grow-0">
<div className="flex-grow h-40 focus:h-full p-2 lg:w-4/12 lg:p-6 lg:h-full lg:flex-grow-0">
<Chat />
</div>
</div>
Expand Down