Skip to content
Snippets Groups Projects
Commit eacc90de authored by syuilo's avatar syuilo
Browse files

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

parent 2606167f
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@
### Client
- Fix: サーバーメトリクスが90度傾いている
- Fix: sparkle内にリンクを入れるとクリック不能になる問題の修正
- Fix: ZenUIでポップアップの表示位置がおかしい問題を修正
- deck UIのカラムのメニューからアンテナとリストの編集画面を開けるように
- ドライブファイルのメニューで画像をクロップできるように
- 画像を動画と同様に簡単に隠せるように
......
<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>
......
<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>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment