2 Commits
v2.0 ... v2.0.1

Author SHA1 Message Date
941871d766 Merge pull request #11 from JoshNotWright/feature/better-refresh
index.html: fix game score not appearing
2024-02-18 18:08:50 -05:00
7cc8913a00 index.html: fix game score not appearing 2024-02-18 18:08:01 -05:00
2 changed files with 4 additions and 2 deletions

View File

@@ -72,6 +72,7 @@ function generateGameBoxes(games, state) {
html += '<span class="team-power-play">' + game['Home Power Play'] + '</span>';
html += '</div>';
html += '<span class="team-score">' + game['Home Score'] + '</span>';
html += '</div>';
html += '<div class="game-info">';
if (game['Intermission']) {
html += '<div class="live-state-intermission">'
@@ -104,7 +105,7 @@ function generateGameBoxes(games, state) {
html += '<div class="live-time">' + game['Time Remaining'] + '</div>';
}
html += '</div>';
html += '<div class="game-info>';
html += '<div class="game-info">';
html += '<strong>Game Score: </strong>' + game['Priority'];
html += '</div>';
html += '</div>';

View File

@@ -76,9 +76,10 @@ h1 {
}
.game-info {
margin-top: 10px;
margin-top: 12px;
color: #aaa; /* Lighten the text color */
text-align: center;
font-size: 14px;
}
.game-info strong {