From 7e75de163f3bbd84794c54d03b178b68ae2ad914 Mon Sep 17 00:00:00 2001 From: Arthur <72667180+bjornsondev@users.noreply.github.com> Date: Thu, 4 Feb 2021 17:34:48 +0600 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20(792)=20fix=20incorrect?= =?UTF-8?q?=20grid=20styles=20(#290)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/features/MatchesGrid/styled.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/MatchesGrid/styled.tsx b/src/features/MatchesGrid/styled.tsx index 6e703cd9..a4c977a0 100644 --- a/src/features/MatchesGrid/styled.tsx +++ b/src/features/MatchesGrid/styled.tsx @@ -6,9 +6,9 @@ export const Wrapper = styled.ul` display: grid; grid-template-columns: repeat(6, 288px); grid-gap: 13px; - + @media ${devices.large} { - grid-template-columns: repeat(auto-fit, minmax(279px, 1fr )); + grid-template-columns: repeat(auto-fit, minmax(279px, 288px)); } @media ${devices.tablet} {