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)`