Added CSS for league page

This commit is contained in:
Lucas Patenaude
2024-04-11 06:07:35 -06:00
parent 25ce9bda97
commit 1beb9b1881
3 changed files with 36 additions and 3 deletions

View File

@@ -0,0 +1,28 @@
#league-page-body {
display: flex;
flex-direction: column;
height: 100vh;
}
#league-information-container {
height: 100px;
background-color: #f0f0f0; /* Example background color */
/* Add any other styling you need for the league information container */
}
#league-stats-container {
display: flex;
flex: 1;
}
#league-table-container {
flex: 1;
background-color: #eaeaea; /* Example background color */
/* Add any other styling you need for the league table container */
}
#top-scorers-container {
flex: 1;
background-color: #dcdcdc; /* Example background color */
/* Add any other styling you need for the top scorers container */
}