summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-09-19 14:23:34 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-09-19 14:23:34 +0900
commit97adf6f2cc3a1f07803d883e3bc06853f390c932 (patch)
tree4c34450c90d177b7bcce032bbd44b86538c6383d /packages/frontend/src/components
parentenhance(frontend): bootでonunhandledrejectionでrenderErrorする場合、Pr... (diff)
downloadmisskey-97adf6f2cc3a1f07803d883e3bc06853f390c932.tar.gz
misskey-97adf6f2cc3a1f07803d883e3bc06853f390c932.tar.bz2
misskey-97adf6f2cc3a1f07803d883e3bc06853f390c932.zip
🎨
Diffstat (limited to 'packages/frontend/src/components')
-rw-r--r--packages/frontend/src/components/MkImageEffectorDialog.vue6
1 files 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;