diff --git a/src/assets/styles/components/general/footer.scss b/src/assets/styles/components/general/footer.scss index 36118eed5..c833ca7a6 100644 --- a/src/assets/styles/components/general/footer.scss +++ b/src/assets/styles/components/general/footer.scss @@ -20,7 +20,6 @@ * SPDX-License-Identifier: Apache-2.0 */ - .footer-content { position: absolute; bottom: 0; @@ -80,8 +79,10 @@ } } -@media (max-width: 893px) { +@media (max-width: 1020px) { .footer-content { + position: relative; + margin: 0; flex-direction: column; align-items: center; @@ -91,12 +92,12 @@ } } } -@media (max-width: 900px) { - .footer-content { - position: relative; - margin:0; - } -} +// @media (max-width: 900px) { +// .footer-content { +// position: relative; +// margin: 0; +// } +// } @media (max-width: 585px) { .footer-content { flex-direction: column; diff --git a/src/assets/styles/components/landing/searchView.scss b/src/assets/styles/components/landing/searchView.scss index 771f3bb55..76c52d4ed 100644 --- a/src/assets/styles/components/landing/searchView.scss +++ b/src/assets/styles/components/landing/searchView.scss @@ -167,7 +167,7 @@ .error { font-weight: bold; text-align: center; - padding: 0 0 70px 0; + padding: 0 0 18px 0; } .qr-container { @@ -441,6 +441,26 @@ .stream-container { margin-top: 15px; margin-bottom: 30px; + width: 300px; + height: 300px; + } + } +} + +@media (max-height: 650px) { + .home-page-container { + .stream-container { + width: 250px; + height: 250px; + } + } +} + +@media (max-height: 590px) { + .home-page-container { + .stream-container { + width: 200px; + height: 200px; } } } @@ -455,10 +475,8 @@ } .stream-container { - margin-top: 15px; + margin-top: 5px; margin-bottom: 30px; - width: 200px; - height: 200px; } .logotype-container { img { diff --git a/src/components/general/QrcodeStrem.vue b/src/components/general/QrcodeStrem.vue new file mode 100644 index 000000000..2fab7fec0 --- /dev/null +++ b/src/components/general/QrcodeStrem.vue @@ -0,0 +1,93 @@ + + + + + diff --git a/src/store/index.js b/src/store/index.js index 8e4c16ad0..779d8edbc 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -57,7 +57,8 @@ export default createStore({ ], processId: null, searchContractId: null, - irsState: false + irsState: false, + qrError: "" }, getters: { getClientId(state) { @@ -78,6 +79,9 @@ export default createStore({ getIrsState(state) { return state.irsState; }, + getQrError(state) { + return state.qrError; + }, }, mutations: { setEmail(state, newEmail) { @@ -112,6 +116,9 @@ export default createStore({ }, setProcessId(state, processId) { state.processId = processId; + }, + setQrError(state, qrError) { + state.qrError = qrError; } }, actions: {}, diff --git a/src/views/SearchView.vue b/src/views/SearchView.vue index 3f204082a..54fc1d034 100644 --- a/src/views/SearchView.vue +++ b/src/views/SearchView.vue @@ -20,7 +20,6 @@ SPDX-License-Identifier: Apache-2.0 --> - - -