Fix overflow scroll (#88)
This commit is contained in:
parent
635be29df3
commit
4ba460827b
|
@ -43,4 +43,8 @@ const List = styled.div`
|
|||
@media (max-width: 425px) {
|
||||
padding-top: 118px;
|
||||
}
|
||||
|
||||
@media (max-width: 375px) {
|
||||
padding-top: 142px;
|
||||
}
|
||||
`
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue