Commit d2c3d6f1 authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

fix: Make QR code overlay semi-transparent to provide better affordance for closing overlay

parent 9ec729c0
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ const QrCode = ({ data, label = 'qr-code', options = {}, size = 600, toggle = ()
            backgroundColor: 'var(--background-color)',
            height: '100%',
            left: 0,
            opacity: 0.9,
            position: 'fixed',
            textAlign: 'center',
            top: 0,
@@ -29,7 +30,7 @@ const QrCode = ({ data, label = 'qr-code', options = {}, size = 600, toggle = ()
            zIndex: 9999,
        },
        caption: {
            color: '#CCCCCC',
            color: '#BBBBBB',
            fontSize: '1.2rem',
            position: 'fixed',
            bottom: 0,