Fix match table border

This commit is contained in:
Thor77 2022-06-11 23:10:17 +02:00
parent 5a9b090195
commit 9b55af68cd
No known key found for this signature in database
GPG Key ID: 5051E71B46AA669A
1 changed files with 5 additions and 3 deletions

View File

@ -36,7 +36,7 @@ export function MatchTable(props) {
<td className={'border-top-0 ' + team1Class}>{props.match.team1.name}</td>
</tr>
<tr>
<td className={props.borderColor + ' ' + team2Class}>kein Gegner</td>
<td className={'border-bottom-0 ' + props.borderColor + ' ' + team2Class}>kein Gegner</td>
</tr>
</tbody>
</Table>);
@ -48,8 +48,10 @@ export function MatchTable(props) {
<td className={'border-top-0 ' + team1Class}>{props.match.team1.name}</td>
</tr>
<tr>
<th className={'stage ' + props.borderColor}>{props.match.team2.score}</th>
<td className={props.borderColor + ' ' + team2Class}>{props.match.team2.name}</td>
<th className={'stage border-bottom-0 ' + props.borderColor}>{props.match.team2.score}</th>
<td className={'border-bottom-0 ' + props.borderColor + ' ' + team2Class}>
{props.match.team2.name}
</td>
</tr>
</tbody>
</Table>);