Scrollbar set to hidden in scoreboard

This commit is contained in:
Lucas Patenaude
2024-04-07 05:04:22 -06:00
parent db748a38f9
commit 24e89c4e41
2 changed files with 6 additions and 1 deletions

View File

@@ -1,6 +1,5 @@
#navigation-bar-container {
background-color: hsl(0, 98%, 40%);
box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.4);
}

View File

@@ -2,6 +2,7 @@
overflow-x: auto; /* Enable horizontal scrolling */
white-space: nowrap; /* Prevent cards from wrapping to the next line */
border: 1px solid rgb(202, 2, 2);
background-color: rgb(255, 255, 255);
@@ -9,6 +10,11 @@
box-shadow: inset 0px 0px 15px rgba(77, 76, 76, 0.3);
}
/* Hide scrollbar in scoreboard for webkit browsers */
.scoreboard-container::-webkit-scrollbar {
display: none;
}
.league-container {
display: inline-block; /* Change display property to inline-block to prevent stretching */
}