fix(client): fix zindex issue

Fix #8086
This commit is contained in:
syuilo
2021-12-24 01:07:04 +09:00
parent 2e80f9dfba
commit 99ced12ac5
2 changed files with 16 additions and 0 deletions

View File

@ -105,6 +105,7 @@ export default defineComponent({
return {
previewable,
gallery,
pswpZIndex: os.claimZIndex('middle'),
};
},
});
@ -188,3 +189,11 @@ export default defineComponent({
}
}
</style>
<style lang="scss">
.pswp {
// なぜか機能しない
//z-index: v-bind(pswpZIndex);
z-index: 2000000;
}
</style>