From 1ea3f192384ba2078b3b426933b2119730b524b3 Mon Sep 17 00:00:00 2001 From: kron Date: Sat, 5 Jul 2025 17:24:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E6=AD=A5=E5=AE=8C=E6=88=90=E8=BF=94?= =?UTF-8?q?=E5=9B=9E=E6=B8=B8=E6=88=8F=E5=8A=9F=E8=83=BD=EF=BC=8C=E5=BE=85?= =?UTF-8?q?=E6=B5=8B=E8=AF=95=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.vue | 8 +++++ src/components/Container.vue | 21 +++++++------ src/components/ScreenHint.vue | 2 +- src/components/ShootProgress.vue | 16 ++++++++-- src/pages/battle-room.vue | 8 +++++ src/pages/friend-battle.vue | 7 ++++- src/pages/melee-match.vue | 51 ++++++++++++++++++++++++++------ src/pages/team-match.vue | 46 +++++++++++++++++++++------- 8 files changed, 126 insertions(+), 33 deletions(-) diff --git a/src/App.vue b/src/App.vue index a8aaa81..4e4c22e 100644 --- a/src/App.vue +++ b/src/App.vue @@ -172,4 +172,12 @@ button::after { overflow: hidden; text-overflow: ellipsis; } + +.modal { + height: 100%; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} diff --git a/src/components/Container.vue b/src/components/Container.vue index f5e4bf0..627c7ff 100644 --- a/src/components/Container.vue +++ b/src/components/Container.vue @@ -1,9 +1,11 @@