Standardized StandingsTable column widths

This commit is contained in:
Peter 2024-07-18 16:06:48 -05:00
parent a6b303b347
commit fa7a9c6af4

View File

@ -3,12 +3,12 @@
<table class="table table-sm table-striped"> <table class="table table-sm table-striped">
<thead class="thead-dark"> <thead class="thead-dark">
<tr> <tr>
<th>Team</th> <th width="35%">Team</th>
<th>Record</th> <th width="13%">Record</th>
<th>Win %</th> <th width="13%">Win %</th>
<th>GB</th> <th width="13%">GB</th>
<th>E#</th> <th width="13%">E#</th>
<th>Run Diff</th> <th width="13%">Run Diff</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -17,7 +17,7 @@
<RouterLink <RouterLink
:to="{ name: 'team', params: { seasonNumber: seasonNumber(), teamAbbreviation: team.teamAbbreviation } }"> :to="{ name: 'team', params: { seasonNumber: seasonNumber(), teamAbbreviation: team.teamAbbreviation } }">
{{ {{
team.teamName }} team.teamName }}
</RouterLink> </RouterLink>
</td> </td>
<td>{{ record(team) }}</td> <td>{{ record(team) }}</td>