This commit is contained in:
pandadev 2024-07-04 23:55:00 +02:00
commit f93ecf2b38
No known key found for this signature in database
GPG key ID: C39629DACB8E762F
47 changed files with 6578 additions and 0 deletions

21
components/Noise.vue Normal file
View file

@ -0,0 +1,21 @@
<template>
<div class="noise"></div>
</template>
<style scoped lang="scss">
.noise {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
user-select: none;
z-index: 0;
background-image: url('/noise.png');
background-repeat: repeat;
image-rendering: pixelated;
overflow: hidden;
}
</style>