Fix Particles causing scroll issues

This commit is contained in:
thepaperpilot 2022-04-24 20:12:30 -05:00
parent 4623cc4b6e
commit 6c5d6783fe
2 changed files with 8 additions and 8 deletions

View file

@ -64,10 +64,10 @@ const validLinks = computed(() => {
.resize-listener,
svg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
z-index: -10;
pointer-events: none;
}

View file

@ -102,10 +102,10 @@ export default defineComponent({
.not-fullscreen,
.resize-listener {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
top: 5px;
left: 5px;
right: 5px;
bottom: 5px;
pointer-events: none;
}
</style>