website/src/routes/register/+layout.svelte
bytedream 9dc8c59271
Some checks failed
delpoy / build-and-deploy (push) Failing after 30s
add register background image
2023-11-03 23:12:01 +01:00

14 lines
391 B
Svelte

<script>
import { PUBLIC_BASE_PATH } from '$env/static/public';
</script>
<img
class="fixed top-0 left-0 h-full w-full object-cover pointer-events-none blur-[2px]"
src="{PUBLIC_BASE_PATH}/img/register-background.webp"
alt=""
/>
<div class="fixed top-0 left-0 h-full w-full bg-[radial-gradient(rgba(0,0,0,0),rgba(0,0,0,.4))]" />
<div class="flex justify-center w-full">
<slot />
</div>