From 3a8d7e3617671eecbda1c592b053c21668519624 Mon Sep 17 00:00:00 2001 From: Brandon Fergerson Date: Sun, 1 May 2022 17:48:45 +0400 Subject: [PATCH] portal size --- src/layout/components/AppMain.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layout/components/AppMain.vue b/src/layout/components/AppMain.vue index 98aab484..6b4c2b47 100644 --- a/src/layout/components/AppMain.vue +++ b/src/layout/components/AppMain.vue @@ -33,9 +33,9 @@ let portalStyle = reactive({}); if (query["portal"] === "true") { // eslint-disable-next-line no-undef portalStyle = reactive({ - "height": "100%", - "max-height": "375px", - "max-width": "800px", + height: "100%", + "max-height": "350px", + "max-width": "963px", }); }