Skip to content
Snippets Groups Projects
Commit cf7d80ba authored by maeries's avatar maeries
Browse files

fixed overflow in table

parent 3c7dd263
No related branches found
No related tags found
No related merge requests found
Pipeline #278542 passed
...@@ -171,7 +171,7 @@ def get_team_page_html(self, team_name, team_data, team_competitions): ...@@ -171,7 +171,7 @@ def get_team_page_html(self, team_name, team_data, team_competitions):
</div> </div>
<h2>Competition History</h2> <h2>Competition History</h2>
<div style="overflow: scroll;"> <div style="overflow-x: scroll;">
<table> <table>
<tr> <tr>
<th>Comp</th> <th>Comp</th>
......
...@@ -271,7 +271,7 @@ def get_world_ranking_html(self, sorted_teams): ...@@ -271,7 +271,7 @@ def get_world_ranking_html(self, sorted_teams):
</div> </div>
<h2>Current Rankings</h2> <h2>Current Rankings</h2>
<div style="overflow: scroll;"> <div style="overflow-x: scroll;">
<table> <table>
<tr> <tr>
<th></th> <th></th>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment