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

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>