refactor: update Noise component styles and replace noise image with a new format; remove unused SVG icons

This commit is contained in:
PandaDEV 2025-03-14 23:59:38 +01:00
parent 50643c6a61
commit 7345483ba1
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C
12 changed files with 9 additions and 92 deletions

View file

@ -6,16 +6,18 @@
.noise {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
top: 1px;
left: 1px;
width: calc(100vw - 2px);
height: calc(100vh - 2px);
pointer-events: none;
user-select: none;
z-index: -1;
background-image: url('/noise.png');
background-image: url("/noise.webp");
background-repeat: repeat;
image-rendering: pixelated;
overflow: hidden;
mix-blend-mode: multiply;
opacity: .5;
border-radius: 12px;
}
</style>
</style>