From dd6863fd0c7c0eccf37c4b23310535b9d000c986 Mon Sep 17 00:00:00 2001 From: Denis Davidyuk Date: Sat, 13 Jan 2024 12:48:02 +0700 Subject: [PATCH] chore: add workaround to keep background after using qr scanner --- src/App.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/App.vue b/src/App.vue index 9c31e9117..222a28bb5 100644 --- a/src/App.vue +++ b/src/App.vue @@ -45,4 +45,10 @@ export default { html, body { height: var(--height); } + +// cordova-plugin-qrscanner makes webview transparent, but doesn't reverts it +// because of this, some elements on other pages looks different +body { + background: #fff; +}