first commit
This commit is contained in:
15
resources/js/components/Noise.vue
Normal file
15
resources/js/components/Noise.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
withDefaults(defineProps<{ opacity?: number }>(), {
|
||||
opacity: 0.014,
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
class="pointer-events-none fixed inset-0 z-[9999] size-full"
|
||||
:style="{
|
||||
backgroundImage: 'url(/assets/noise.png)',
|
||||
opacity,
|
||||
}"
|
||||
/>
|
||||
</template>
|
||||
Reference in New Issue
Block a user