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

fix(client): fix zindex issue

Fix #8086
parent 2e80f9df
No related branches found
No related tags found
No related merge requests found
...@@ -7,6 +7,13 @@ ...@@ -7,6 +7,13 @@
--> -->
## 12.x.x (unreleased)
### Improvements
### Bugfixes
- クライアント: 一部のコンポーネントが裏に隠れるのを修正
## 12.100.2 (2021/12/18) ## 12.100.2 (2021/12/18)
### Bugfixes ### Bugfixes
......
...@@ -105,6 +105,7 @@ export default defineComponent({ ...@@ -105,6 +105,7 @@ export default defineComponent({
return { return {
previewable, previewable,
gallery, gallery,
pswpZIndex: os.claimZIndex('middle'),
}; };
}, },
}); });
...@@ -188,3 +189,11 @@ export default defineComponent({ ...@@ -188,3 +189,11 @@ export default defineComponent({
} }
} }
</style> </style>
<style lang="scss">
.pswp {
// なぜか機能しない
//z-index: v-bind(pswpZIndex);
z-index: 2000000;
}
</style>
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