Fix: QR code in embedded settings (firefox)

Firefox has an issue where a backdrop filter within a shadow dom breaks the drawing of the popup. This disables the filter only in the embedded menu to avoid this issue altogether.
This commit is contained in:
Jaxon Lewis-Wilson
2026-03-20 19:43:40 +08:00
parent 43f125e45d
commit 08342c3873
@@ -132,7 +132,7 @@
{#if showQrModal && qrDataUrl} {#if showQrModal && qrDataUrl}
<div <div
use:portal use:portal
class="fixed cursor-auto inset-0 z-[10000] flex justify-center items-center bg-black/50 backdrop-blur-sm" class="fixed cursor-auto inset-0 z-[10000] flex justify-center items-center bg-black/50 {isStandalone ? 'backdrop-blur-sm' : ''}"
role="button" role="button"
tabindex="-1" tabindex="-1"
onclick={(e) => { onclick={(e) => {