Skip to content

Commit

Permalink
csssssssssssssss
Browse files Browse the repository at this point in the history
  • Loading branch information
mariansam committed Jun 15, 2023
1 parent 1649050 commit 6c8d6ed
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/team-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ export const TeamView: React.FC<TeamProps> = props => {
</tbody>
<tfoot>
<tr style={teamPointsInlineStyle}>
<td><b>Góly týmu:</b></td>
<td><b>{totalGoals}</b></td>
<td className='w-75'><b>Góly týmu:</b></td>
<td className='w-25'><b>{totalGoals}</b></td>
</tr>
<tr style={teamPointsInlineStyle}>
<td><b>Body týmu:</b></td>
<td><b>{team.points}</b></td>
<td className='w-75'><b>Body týmu:</b></td>
<td className='w-25'><b>{team.points}</b></td>
</tr>
</tfoot>
</Table>
Expand All @@ -63,8 +63,8 @@ const PlayerRow: React.FC<PlayerRowProps> = props => {

return (
<tr style={last ? { borderBottomColor: 'black' } : undefined}>
<td>{player.name}</td>
<td>{player.goals.length}</td>
<td className='w-75'>{player.name}</td>
<td className='w-25'>{player.goals.length}</td>
</tr>
);
};

0 comments on commit 6c8d6ed

Please sign in to comment.