From d707914441e2b1b0a1f392e7f5adb9856e9ade2d Mon Sep 17 00:00:00 2001 From: Daniel Shleifman Date: Tue, 15 Jun 2021 19:56:06 +0300 Subject: [PATCH] image resolution fix --- web/src/components/TorrentCard/style.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/web/src/components/TorrentCard/style.js b/web/src/components/TorrentCard/style.js index 419fe95..cd5dad7 100644 --- a/web/src/components/TorrentCard/style.js +++ b/web/src/components/TorrentCard/style.js @@ -16,12 +16,12 @@ export const TorrentCard = styled.div` 'poster description' 'buttons buttons'; - grid-template-columns: 70px 1fr; + grid-template-columns: 90px 1fr; grid-template-rows: 130px max-content; } @media (max-width: 770px) { - grid-template-columns: 60px 1fr; + grid-template-columns: 80px 1fr; grid-template-rows: 110px max-content; } ` @@ -91,10 +91,6 @@ export const TorrentCardDescription = styled.div` gap: 3px; } - @media (max-width: 770px) { - /* grid-template-rows: 56% 1fr; */ - } - .description-title-wrapper { display: flex; flex-direction: column;