ok
BIN
nginx/vue/public/img/memes/beer.png
Normal file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
nginx/vue/public/img/memes/fire-woman.gif
Normal file
|
After Width: | Height: | Size: 4.7 MiB |
BIN
nginx/vue/public/img/memes/mix.gif
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
nginx/vue/public/img/memes/no_slip.png
Normal file
|
After Width: | Height: | Size: 23 KiB |
BIN
nginx/vue/public/img/memes/pidgeon.gif
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 573 KiB |
BIN
nginx/vue/public/img/memes/star.gif
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
nginx/vue/public/img/memes/welcome2.png
Normal file
|
After Width: | Height: | Size: 1.5 MiB |
13
nginx/vue/src/components/Overlay.vue
Normal 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>
|
||||||