Updated Css for better support on mobiles in the torrent table in homepage

This commit is contained in:
Saif Basheer Ahamed 2025-11-08 14:33:09 +05:30
parent c51f8cb503
commit 994f167ab3

View file

@ -5,6 +5,12 @@ table {
word-break: break-all; 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 { .flex-container {