summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2023-07-07 20:18:06 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2023-07-07 20:18:06 +0900
commiteacc90debc439beb59902cc2008d92d114a5f9de (patch)
treeac13096d2803ca8567041755816fb83d2a783222
parentchore: collapse renote of my note (#11166) (diff)
downloadmisskey-eacc90debc439beb59902cc2008d92d114a5f9de.tar.gz
misskey-eacc90debc439beb59902cc2008d92d114a5f9de.tar.bz2
misskey-eacc90debc439beb59902cc2008d92d114a5f9de.zip
fix(client): ZenUIでポップアップの表示位置がおかしい問題を修正
-rw-r--r--CHANGELOG.md1
-rw-r--r--packages/frontend/src/ui/minimum.vue6
-rw-r--r--packages/frontend/src/ui/zen.vue6
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97309f737a..7ed8b9d4fe 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -24,6 +24,7 @@
### Client
- Fix: サーバーメトリクスが90度傾いている
- Fix: sparkle内にリンクを入れるとクリック不能になる問題の修正
+- Fix: ZenUIでポップアップの表示位置がおかしい問題を修正
- deck UIのカラムのメニューからアンテナとリストの編集画面を開けるように
- ドライブファイルのメニューで画像をクロップできるように
- 画像を動画と同様に簡単に隠せるように
diff --git a/packages/frontend/src/ui/minimum.vue b/packages/frontend/src/ui/minimum.vue
index e656f00bb2..baba9e4da5 100644
--- a/packages/frontend/src/ui/minimum.vue
+++ b/packages/frontend/src/ui/minimum.vue
@@ -1,6 +1,8 @@
<template>
-<div :class="$style.root" style="container-type: inline-size;">
- <RouterView/>
+<div :class="$style.root">
+ <div style="container-type: inline-size;">
+ <RouterView/>
+ </div>
<XCommon/>
</div>
diff --git a/packages/frontend/src/ui/zen.vue b/packages/frontend/src/ui/zen.vue
index d516a5df75..6c8a986411 100644
--- a/packages/frontend/src/ui/zen.vue
+++ b/packages/frontend/src/ui/zen.vue
@@ -1,6 +1,8 @@
<template>
-<div :class="showBottom ? $style.rootWithBottom : $style.root" style="container-type: inline-size;">
- <RouterView/>
+<div :class="showBottom ? $style.rootWithBottom : $style.root">
+ <div style="container-type: inline-size;">
+ <RouterView/>
+ </div>
<XCommon/>
</div>