Fix overflow scroll (#88)

This commit is contained in:
Maria Rushkova 2021-09-22 12:29:50 +02:00 committed by GitHub
parent 635be29df3
commit 4ba460827b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 2 deletions

View File

@ -43,4 +43,8 @@ const List = styled.div`
@media (max-width: 425px) {
padding-top: 118px;
}
@media (max-width: 375px) {
padding-top: 142px;
}
`

View File

@ -237,6 +237,11 @@ const TimeLeftMobile = styled.div`
letter-spacing: 0.1px;
color: #939ba1;
@media (max-width: 375px) {
bottom: unset;
top: -23px;
}
&.mobile {
font-size: 12px;
}

View File

@ -47,6 +47,7 @@ const PopUpOverlay = styled.div`
background-color: rgba(0, 0, 0, 0.4);
z-index: 9999;
transition: all 0.3s;
overflow: scroll;
@media (max-width: 600px) {
padding: 16px;
@ -59,13 +60,11 @@ const PopUpWindow = styled.div`
flex-direction: column;
justify-content: space-between;
width: 468px;
max-height: 75vh;
background-color: white;
margin: 20vh auto 2vh;
padding: 24px 24px 32px;
box-shadow: 10px 10px 31px -2px #a3a1a1;
border-radius: 5px;
overflow: scroll;
z-index: 9998;
-ms-overflow-style: none;