MOBILE-3401 qrscanner: Fix scanner on darkmode

main
Pau Ferrer Ocaña 2020-06-23 13:03:40 +02:00
parent e9e8605003
commit 206afd7505
1 changed files with 4 additions and 4 deletions

View File

@ -1305,17 +1305,17 @@ ion-app.app-root {
// QR scan. The scanner is at the background of the app, we need to hide the elements that overlay it.
.core-scanning-qr {
ion-app.app-root {
background-color: transparent;
background-color: transparent !important;
.ion-page {
background-color: transparent;
background-color: transparent !important;
}
ion-content, ion-backdrop, ion-modal:not(.core-modal-fullscreen), core-ion-tabs {
display: none;
display: none !important;
}
&.ios .ion-page.show-page~.nav-decor {
display: none;
display: none !important;
}
}
}