diff --git a/ProjectSourceCode/src/resources/css/league-pages/league-table.css b/ProjectSourceCode/src/resources/css/league-pages/league-table.css index 0b84694..e7ae2d0 100644 --- a/ProjectSourceCode/src/resources/css/league-pages/league-table.css +++ b/ProjectSourceCode/src/resources/css/league-pages/league-table.css @@ -63,6 +63,10 @@ border: 1px solid lightgray; border-radius: 10px; + #table-club-logo { + width: 32px; + } + #club-name-column { text-decoration: underline; /* Add underline effect */ } diff --git a/ProjectSourceCode/src/resources/css/league-pages/top-scorers.css b/ProjectSourceCode/src/resources/css/league-pages/top-scorers.css index af8b118..f6c5c98 100644 --- a/ProjectSourceCode/src/resources/css/league-pages/top-scorers.css +++ b/ProjectSourceCode/src/resources/css/league-pages/top-scorers.css @@ -3,14 +3,21 @@ /* Add any other styling you need for the top scorers container */ } +#top-scorers-stats-container th { + border-bottom: 3px solid red; /* Add red bottom border */ +} + #top-scorers-stats-container tbody tr { - margin-bottom: 10px; /* Adjust the value as needed */ + padding: 3px; } #top-scorers-stats-container tbody tr:hover { border: 1px solid lightgray; - + + #top-scorers-logo { + width: 32px; + } #club-name-column { text-decoration: underline;