Ensures the minimized modal is always 50px above the mobile browser bottom bar regardless of whether or not it is visible.
This commit is contained in:
parent
2298ad0011
commit
77d65d6cec
2 changed files with 5 additions and 2 deletions
|
@ -15,6 +15,9 @@
|
|||
transform: translateY(calc(((100vh - 100%) / 2 + 100%) - 50px));
|
||||
|
||||
@media all and (max-width: 800px) {
|
||||
/* For mobile, the modal takes 100% of the available screen.
|
||||
This ensures the minimized modal is always 50px above the browser bottom bar regardless of whether or not it is visible.
|
||||
*/
|
||||
transform: translateY(calc(100% - 50px));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue