23 lines
421 B
Vue
23 lines
421 B
Vue
<template>
|
|
<title>Eurovision 2025</title>
|
|
<Header />
|
|
<div class="container mx-auto pt-6 p-4">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
body {
|
|
background-image: url('/bg.webp');
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
background-size: auto 100%;
|
|
}
|
|
|
|
.container {
|
|
-webkit-backdrop-filter: blur(20px);
|
|
backdrop-filter: blur(20px);
|
|
height: 100dvh;
|
|
}
|
|
|
|
</style> |