Put mobile height fix under a breakpoint
This commit is contained in:
parent
54c772622e
commit
fa1d45635b
|
@ -32,7 +32,7 @@ dialog {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: 100%;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -170,3 +170,9 @@ body.no-blur .popup[open]::backdrop {
|
||||||
/* Fix weird animation issue with font-scaling during popup open */
|
/* Fix weird animation issue with font-scaling during popup open */
|
||||||
backface-visibility: hidden;
|
backface-visibility: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 1000px) {
|
||||||
|
.popup .popup-body {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue