Comments and styling added to league page. More debugging and optimization needed. Table and top scorers are no longer aligned at larger widths

This commit is contained in:
Lucas Patenaude
2024-04-14 19:32:46 -06:00
parent 111466a860
commit f2fd71a764
4 changed files with 23 additions and 14 deletions

View File

@@ -11,6 +11,10 @@
padding: 15px;
}
#table-stats-container {
width: 100%;
}
#table-stats-container th {
border-bottom: 3px solid red; /* Add red bottom border */
}
@@ -57,3 +61,9 @@
text-decoration: underline; /* Add underline effect */
}
}
@media (max-width: 950px) {
#league-table-and-information-container {
width: 100%; /* Set the width to 60% when window width is less than 1161px */
}
}