From 06ec4d367c84e8ede89bc3d88840d3818a1fcb0c Mon Sep 17 00:00:00 2001 From: Serg <936x936@gmail.com> Date: Thu, 26 Aug 2021 16:38:28 +0300 Subject: [PATCH] fix(ott-1475): fix container scroll (#444) --- src/features/Background/styled.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/features/Background/styled.tsx b/src/features/Background/styled.tsx index 7bc52cef..429620c1 100644 --- a/src/features/Background/styled.tsx +++ b/src/features/Background/styled.tsx @@ -4,6 +4,11 @@ const Container = styled.div` width: 100%; min-height: 100vh; overflow-x: hidden; + + /* временное решение для низких разрешений на windows */ + @media (min-width: 1340px) and (max-width: 1380px){ + overflow-y: hidden; + } ` export const ImageBackground = styled(Container)`