diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-08 12:07:30 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-05-08 12:07:30 +0900 |
| commit | 5b250c15f8af1e0afc9dc60f23269582e9c17ef4 (patch) | |
| tree | 04f9d381ca458dedd8167810007eb4ce614a6fa9 /src | |
| parent | Improve ad (diff) | |
| download | misskey-5b250c15f8af1e0afc9dc60f23269582e9c17ef4.tar.gz misskey-5b250c15f8af1e0afc9dc60f23269582e9c17ef4.tar.bz2 misskey-5b250c15f8af1e0afc9dc60f23269582e9c17ef4.zip | |
fix bug
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/components/ui/modal.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/components/ui/modal.vue b/src/client/components/ui/modal.vue index 3b11213426..2a4eec4034 100644 --- a/src/client/components/ui/modal.vue +++ b/src/client/components/ui/modal.vue @@ -226,12 +226,12 @@ export default defineComponent({ .mk-modal { > .bg { - z-index: 10000; + z-index: 20000; } > .content:not(.popup) { position: fixed; - z-index: 10000; + z-index: 20000; top: 0; bottom: 0; left: 0; @@ -263,7 +263,7 @@ export default defineComponent({ > .content.popup { position: absolute; - z-index: 10000; + z-index: 20000; &.fixed { position: fixed; |