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 {