From d1e44f01f5e7da8651021641c7bf2389151722dc Mon Sep 17 00:00:00 2001 From: Mirlan Date: Wed, 13 Oct 2021 17:56:11 +0600 Subject: [PATCH] fix(1811): player width on mobile (#536) --- src/features/MatchPage/styled.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/features/MatchPage/styled.tsx b/src/features/MatchPage/styled.tsx index 3333d559..07344844 100644 --- a/src/features/MatchPage/styled.tsx +++ b/src/features/MatchPage/styled.tsx @@ -45,15 +45,15 @@ export const Container = styled.div` ${isMobileDevice ? css` + width: 100%; max-width: 100%; margin-right: 0; padding: 0; margin-bottom: 15px; min-height: 32vh; - + @media screen and (orientation: landscape){ display: block; - width: 100%; margin-bottom: 0; } `