From 994f167ab30c7185f4e68fc5ce5a85bc3ab56669 Mon Sep 17 00:00:00 2001 From: Saif Basheer Ahamed Date: Sat, 8 Nov 2025 14:33:09 +0530 Subject: [PATCH] Updated Css for better support on mobiles in the torrent table in homepage --- client/src/app/torrent-table/torrent-table.component.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/client/src/app/torrent-table/torrent-table.component.scss b/client/src/app/torrent-table/torrent-table.component.scss index 268ada6..071fdc9 100644 --- a/client/src/app/torrent-table/torrent-table.component.scss +++ b/client/src/app/torrent-table/torrent-table.component.scss @@ -5,6 +5,12 @@ table { word-break: break-all; } } + // Make table horizontally scrollable on small screens + @media screen and (max-width: 768px) { + display: block; + overflow-x: auto; + white-space: nowrap; + } } .flex-container {