mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-06-05 19:24:39 +00:00
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:
@@ -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) => {
|
||||||
|
|||||||
Reference in New Issue
Block a user