From 3a37fe4a4b8f3ca5b5f4152fc6eaff64455b7a35 Mon Sep 17 00:00:00 2001 From: F-Node-Karlsruhe Date: Tue, 13 Dec 2022 10:41:12 +0100 Subject: [PATCH] fix responsive styling --- frontend/src/store/index.js | 2 +- frontend/src/styles/style.scss | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/src/store/index.js b/frontend/src/store/index.js index 7d2c892..a38faa1 100644 --- a/frontend/src/store/index.js +++ b/frontend/src/store/index.js @@ -3,7 +3,7 @@ import { createStore } from 'vuex' export default createStore({ state: { - version: '0.3.4', + version: '0.3.5', credentials: [], VC_REGISTRY: process.env.VC_REGISTRY || 'https://ssi.eecc.de/api/registry/vcs/', showQRModal: false diff --git a/frontend/src/styles/style.scss b/frontend/src/styles/style.scss index 202e482..e4dec66 100644 --- a/frontend/src/styles/style.scss +++ b/frontend/src/styles/style.scss @@ -13,11 +13,12 @@ html, body {margin: 0; height: 100%; overflow: hidden} #maincard { min-width: 80%; - height: 90vh; + max-height: 90vh; @media (max-width: 768px) { border-radius: 0; height: 100%; + max-height: 100%; width: 100%; }