Put mobile height fix under a breakpoint

This commit is contained in:
Cohee 2024-06-28 20:40:57 +03:00
parent 54c772622e
commit fa1d45635b
1 changed files with 7 additions and 1 deletions

View File

@ -32,7 +32,7 @@ dialog {
flex-direction: column;
overflow: hidden;
width: 100%;
height: auto;
height: 100%;
padding: 1px;
}
@ -170,3 +170,9 @@ body.no-blur .popup[open]::backdrop {
/* Fix weird animation issue with font-scaling during popup open */
backface-visibility: hidden;
}
@media screen and (max-width: 1000px) {
.popup .popup-body {
height: auto;
}
}