fix(ott-1475): fix container scroll (#444)

keep-around/af30b88d367751c9e05a735e4a0467a96238ef47
Serg 4 years ago committed by GitHub
parent 3f9b577752
commit 06ec4d367c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      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)`

Loading…
Cancel
Save