Formatting changes + yesterday dynamically updates for scoreboard date parameter. Hover effect also added to focused game card

This commit is contained in:
2024-04-03 23:35:38 -06:00
parent 1a771845bd
commit 1d50359612
3 changed files with 30 additions and 8 deletions

View File

@@ -6,6 +6,12 @@
min-height: 100px;
min-width: 200px;
box-sizing: border-box;
transition: transform 0.4s ease; /* Add transition for smooth effect */
}
#game-card:hover {
transform: scale(1.05); /* Scale up by 10% on hover */
}
.score-card-body {