fix(client): ZenUIでポップアップの表示位置がおかしい問題を修正

This commit is contained in:
syuilo 2023-07-07 20:18:06 +09:00
parent 2606167f0d
commit eacc90debc
3 changed files with 9 additions and 4 deletions

View File

@ -24,6 +24,7 @@
### Client
- Fix: サーバーメトリクスが90度傾いている
- Fix: sparkle内にリンクを入れるとクリック不能になる問題の修正
- Fix: ZenUIでポップアップの表示位置がおかしい問題を修正
- deck UIのカラムのメニューからアンテナとリストの編集画面を開けるように
- ドライブファイルのメニューで画像をクロップできるように
- 画像を動画と同様に簡単に隠せるように

View File

@ -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>

View File

@ -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>