From cf7d80baed9ddd9b0d3c0c328978391eb518f87b Mon Sep 17 00:00:00 2001
From: maeries <8ij4neqiu@mozmail.com>
Date: Tue, 25 Mar 2025 15:42:41 +0100
Subject: [PATCH] fixed overflow in table

---
 team_page.py          | 2 +-
 world_ranking_list.py | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/team_page.py b/team_page.py
index 79cdb44..c5cf554 100644
--- a/team_page.py
+++ b/team_page.py
@@ -171,7 +171,7 @@ def get_team_page_html(self, team_name, team_data, team_competitions):
         </div>
 
         <h2>Competition History</h2>
-        <div style="overflow: scroll;">
+        <div style="overflow-x: scroll;">
             <table>
                 <tr>
                     <th>Comp</th>
diff --git a/world_ranking_list.py b/world_ranking_list.py
index 01dee6e..4ac1e0f 100644
--- a/world_ranking_list.py
+++ b/world_ranking_list.py
@@ -271,7 +271,7 @@ def get_world_ranking_html(self, sorted_teams):
             </div>
 
             <h2>Current Rankings</h2>
-            <div style="overflow: scroll;">
+            <div style="overflow-x: scroll;">
                 <table>
                     <tr>
                         <th></th>
-- 
GitLab