Reprototyping of scoreboard without bootstrap carousel

This commit is contained in:
Lucas Patenaude
2024-04-03 15:59:57 -06:00
parent 227bde2178
commit 08ff912a79
6 changed files with 55 additions and 5 deletions

View File

@@ -1,16 +1,21 @@
#scoreboard-container {
display: flex;
transition: transform 0.5s ease;
}
.league-container {
display: flex;
justify-content: flex-start; /* Align cards to the left */
border: 1px solid rgb(206, 202, 202);
}
/* Styling for each card representing a live game */
#game-card {
flex: 0 0 auto;
border: 1px solid #ccc;
padding: 20px; /* Increase padding to increase the apparent height */
margin: 10px 10px;
min-height: 100px; /* Set a minimum height for the cards */
min-width: 150px;
box-sizing: border-box; /* Include padding and border in the element's total width and height */
}