From c430d3b4ed00e7723e4c9e71abe5a21cd2ee5fdd Mon Sep 17 00:00:00 2001 From: Dennis Reimann Date: Mon, 13 Jan 2025 12:45:15 +0100 Subject: [PATCH] UI: Fix mobile sidebar height and behaviour for Firefox Fixes #6548. --- BTCPayServer/wwwroot/main/layout.css | 1 - 1 file changed, 1 deletion(-) diff --git a/BTCPayServer/wwwroot/main/layout.css b/BTCPayServer/wwwroot/main/layout.css index 227abbb61..34f166dad 100644 --- a/BTCPayServer/wwwroot/main/layout.css +++ b/BTCPayServer/wwwroot/main/layout.css @@ -488,7 +488,6 @@ 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 */