mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
parent
0aa7dacbca
commit
7a75a8c254
@ -425,6 +425,14 @@
|
||||
outline: 0;
|
||||
transform: translateX(-100%);
|
||||
transition: transform var(--btcpay-transition-duration-fast) ease-in-out;
|
||||
/* Fixes https://github.com/btcpayserver/btcpayserver/issues/3807 */
|
||||
height: calc(100vh - var(--mobile-header-height)); /* This line is a fallback for browsers which don't support "fill-available" */
|
||||
height: -moz-available;
|
||||
height: -webkit-fill-available;
|
||||
height: fill-available;
|
||||
/* Since we can't do "calc(fill-available - var(--mobile-header-height));" I'm using "padding-bottom" instead */
|
||||
padding-bottom: var(--mobile-header-height);
|
||||
/* END FIX */
|
||||
}
|
||||
|
||||
#mainNav.show {
|
||||
|
Loading…
Reference in New Issue
Block a user