This commit is contained in:
the-djmaze 2022-11-19 13:10:32 +01:00
parent ebaf92a2f0
commit 8e204409f6
3 changed files with 3 additions and 4 deletions

View file

@ -62,6 +62,7 @@ dialog {
border: 1px solid var(--dialog-border-clr, rgba(0,0,0,.3));
border-radius: var(--dialog-border-radius, 6px);
box-shadow: 0 5px 80px rgba(0,0,0,0.3);
box-sizing: border-box;
color: var(--dialog-clr, #333);
display: flex;
flex-direction: column;

View file

@ -150,6 +150,8 @@
@media screen and (max-width: 999px) {
#V-PopupsCompose {
border: 0;
height: calc(100vh - 100px);
margin: 0 auto;
width: 100%;
}
}

View file

@ -163,7 +163,3 @@ Secondly, we can't rely on MUA's what to do with :empty
*/
}
}
.rl-mobile #V-PopupsCompose {
min-height: calc(100% - 12px);
}