viewer: fix positioning of popper

Signed-off-by: Varun Patil <radialapps@gmail.com>
pull/767/head
Varun Patil 2023-08-03 14:29:08 -07:00
parent 4e03a1b24b
commit 488c67d216
1 changed files with 9 additions and 0 deletions

View File

@ -1269,6 +1269,7 @@ export default defineComponent({
cursor: pointer;
}
}
.pswp__icn-shadow {
display: none;
}
@ -1279,5 +1280,13 @@ export default defineComponent({
opacity: 0 !important;
}
}
// Prevent the popper from overlapping with the sidebar
> div > .v-popper__wrapper {
overflow: visible !important;
> .v-popper__inner {
transform: translateX(-20px);
}
}
}
</style>