Add background image and styling improvements for artist cards
This commit is contained in:
+12
-2
@@ -1,13 +1,23 @@
|
||||
<template>
|
||||
<title>Eurovision 2025</title>
|
||||
<Header />
|
||||
<div class="container mx-auto pt-6 p-4 bg-slate-400">
|
||||
<div class="container mx-auto pt-6 p-4">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style>
|
||||
body {
|
||||
background-color: #aaa;
|
||||
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>
|
||||
Reference in New Issue
Block a user