add WIP design
This commit is contained in:
11
src/lib/components/ui/background/background.svelte
Normal file
11
src/lib/components/ui/background/background.svelte
Normal file
@@ -0,0 +1,11 @@
|
||||
<script lang="ts">
|
||||
import background from "../../../../assets/background.gif";
|
||||
</script>
|
||||
|
||||
<div class="absolute w-screen h-screen overflow-hidden pointer-events-none">
|
||||
<img
|
||||
src={background}
|
||||
alt="background"
|
||||
class="absolute top-0 left-0 w-screen -z-10 pointer-events-none blur opacity-40"
|
||||
/>
|
||||
</div>
|
Reference in New Issue
Block a user