This commit is contained in:
2025-12-16 03:42:24 +00:00
parent 52757b05f9
commit 21f173b95a
9 changed files with 13 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 573 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

View File

@@ -0,0 +1,13 @@
<template>
<div class="overlay">
<slot />
</div>
</template>
<style scoped>
.overlay {
position: absolute;
inset: 0; /* full width & height of parent */
pointer-events: none; /* overlay does not block clicks */
}
</style>