diff --git a/src/views/ScheduleView.vue b/src/views/ScheduleView.vue
index 615df72..c153b36 100644
--- a/src/views/ScheduleView.vue
+++ b/src/views/ScheduleView.vue
@@ -28,7 +28,8 @@
|
+ :to="{ name: 'team', params: { seasonNumber: seasonNumber, teamAbbreviation: game.away_team.abbrev } }"
+ :style="{ 'font-weight': game.away_score > game.home_score ? 'bold' : 'normal' }">
{{ game.away_team.abbrev }}
|
@@ -41,7 +42,8 @@
+ :to="{ name: 'team', params: { seasonNumber: seasonNumber, teamAbbreviation: game.home_team.abbrev } }"
+ :style="{ 'font-weight': game.home_score > game.away_score ? 'bold' : 'normal' }">
{{ game.home_team.abbrev }}
|