diff --git a/web/src/components/Torrent/index.jsx b/web/src/components/Torrent/index.jsx
index 3fe84cd..f236d0f 100644
--- a/web/src/components/Torrent/index.jsx
+++ b/web/src/components/Torrent/index.jsx
@@ -75,11 +75,6 @@ export default function Torrent({ torrent }) {
Drop
- deleteTorrent(torrentLocalComponentValue)}>
-
- Delete
-
-
{
setShowCache(false)
@@ -89,6 +84,11 @@ export default function Torrent({ torrent }) {
Details
+
+ deleteTorrent(torrentLocalComponentValue)}>
+
+ Delete
+
diff --git a/web/src/components/TorrentList.jsx b/web/src/components/TorrentList.jsx
index 9a348b9..2f1f325 100644
--- a/web/src/components/TorrentList.jsx
+++ b/web/src/components/TorrentList.jsx
@@ -14,6 +14,10 @@ const TorrentListWrapper = styled.div`
gap: 10px;
grid-template-columns: repeat(auto-fit, 310px);
}
+
+ @media (max-width: 410px) {
+ grid-template-columns: minmax(min-content, 290px);
+ }
`
export default function TorrentList() {