Skip to content

Commit 08c9e1f

Browse files
committed
[feature] Beautify team overview
1 parent 9cb8e37 commit 08c9e1f

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

src/components/team/TeamOverview.vue

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<td>
1818
<TeamGoalkeeper :edit-mode="editMode" team-color="Yellow"/>
1919
</td>
20-
<td>Goal Keeper</td>
20+
<td class="label-column">Goal Keeper</td>
2121
<td>
2222
<TeamGoalkeeper :edit-mode="editMode" team-color="Blue"/>
2323
</td>
@@ -28,7 +28,7 @@
2828
|
2929
<TeamTimeoutTime :edit-mode="editMode" team-color="Yellow"/>
3030
</td>
31-
<td>Timeouts left</td>
31+
<td class="label-column">Timeouts left</td>
3232
<td>
3333
<TeamTimeouts :edit-mode="editMode" team-color="Blue"/>
3434
|
@@ -41,7 +41,7 @@
4141
|
4242
<TeamRedCards :edit-mode="editMode" team-color="Yellow"/>
4343
</td>
44-
<td>Yellow / Red Cards</td>
44+
<td class="label-column">Yellow / Red Cards</td>
4545
<td>
4646
<TeamYellowCards :edit-mode="editMode" team-color="Blue"/>
4747
|
@@ -52,7 +52,7 @@
5252
<td>
5353
<TeamYellowCardsActive :edit-mode="editMode" team-color="Yellow"/>
5454
</td>
55-
<td>
55+
<td class="label-column">
5656
Active Yellow Cards
5757
</td>
5858
<td>
@@ -63,7 +63,7 @@
6363
<td>
6464
<TeamFoulCounter :edit-mode="editMode" team-color="Yellow"/>
6565
</td>
66-
<td>Foul Counter</td>
66+
<td class="label-column">Foul Counter</td>
6767
<td>
6868
<TeamFoulCounter :edit-mode="editMode" team-color="Blue"/>
6969
</td>
@@ -72,7 +72,7 @@
7272
<td>
7373
<TeamPlacementFailures :edit-mode="editMode" team-color="Yellow"/>
7474
</td>
75-
<td>Placement Failures</td>
75+
<td class="label-column">Placement Failures</td>
7676
<td>
7777
<TeamPlacementFailures :edit-mode="editMode" team-color="Blue"/>
7878
</td>
@@ -81,21 +81,21 @@
8181
<td>
8282
<TeamBotSubstitution team-color="Yellow"/>
8383
</td>
84-
<td>Bot Substitution</td>
84+
<td class="label-column">Bot Substitution</td>
8585
<td>
8686
<TeamBotSubstitution team-color="Blue"/>
8787
</td>
8888
</tr>
8989
<tr>
9090
<td>{{teamYellow.maxAllowedBots}}</td>
91-
<td>Max allowed Bots</td>
91+
<td class="label-column">Max allowed Bots</td>
9292
<td>{{teamBlue.maxAllowedBots}}</td>
9393
</tr>
9494
<tr>
9595
<td>
9696
<TeamConnection team-color="Yellow"/>
9797
</td>
98-
<td>Connected</td>
98+
<td class="label-column">Connected</td>
9999
<td>
100100
<TeamConnection team-color="Blue"/>
101101
</td>
@@ -152,4 +152,8 @@
152152
</script>
153153

154154
<style scoped>
155+
.label-column {
156+
font-weight: bold;
157+
padding: 0.5em;
158+
}
155159
</style>

0 commit comments

Comments
 (0)