From 97adf6f2cc3a1f07803d883e3bc06853f390c932 Mon Sep 17 00:00:00 2001 From: syuilo <4439005+syuilo@users.noreply.github.com> Date: Fri, 19 Sep 2025 14:23:34 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/frontend/src/components/MkImageEffectorDialog.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/frontend/src/components/MkImageEffectorDialog.vue b/packages/frontend/src/components/MkImageEffectorDialog.vue index f794af290a..465100ef20 100644 --- a/packages/frontend/src/components/MkImageEffectorDialog.vue +++ b/packages/frontend/src/components/MkImageEffectorDialog.vue @@ -392,10 +392,12 @@ function onImagePointerdown(ev: PointerEvent) { position: absolute; top: 0; left: 0; - width: -webkit-fill-available; + /* なんかiOSでレンダリングがおかしい width: stretch; - height: -webkit-fill-available; height: stretch; + */ + width: calc(100% - 40px); + height: calc(100% - 40px); margin: 20px; box-sizing: border-box; object-fit: contain;