Skip to content

Commit

Permalink
fix(client): ZenUIでポップアップの表示位置がおかしい問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
syuilo committed Jul 7, 2023
1 parent 2606167 commit eacc90d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
### Client
- Fix: サーバーメトリクスが90度傾いている
- Fix: sparkle内にリンクを入れるとクリック不能になる問題の修正
- Fix: ZenUIでポップアップの表示位置がおかしい問題を修正
- deck UIのカラムのメニューからアンテナとリストの編集画面を開けるように
- ドライブファイルのメニューで画像をクロップできるように
- 画像を動画と同様に簡単に隠せるように
Expand Down
6 changes: 4 additions & 2 deletions packages/frontend/src/ui/minimum.vue
Original file line number Diff line number Diff line change
@@ -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>
Expand Down
6 changes: 4 additions & 2 deletions packages/frontend/src/ui/zen.vue
Original file line number Diff line number Diff line change
@@ -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>
Expand Down

0 comments on commit eacc90d

Please sign in to comment.