remove obsolete file + start new event details

This commit is contained in:
2023-06-28 20:05:33 +02:00
parent f1f36b135c
commit 0f8633ede4
2 changed files with 14 additions and 13 deletions

View File

@@ -1,8 +0,0 @@
<!--
* libreevent - PaymentPrepareView.vue
*
* Created by Janis Hutz 05/14/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
-->

View File

@@ -9,16 +9,25 @@
<template>
<div class="details">
<h1>{{ event.name }}</h1>
<router-link to="/tickets"><span class="material-symbols-outlined" style="font-size: 100%;">arrow_back</span>Back</router-link>
<p>{{ event.description }}</p>
<router-link to="/tickets/order">Order tickets</router-link>
<div class="top-container">
<h1>{{ event.name }}</h1>
<router-link to="/tickets"><span class="material-symbols-outlined" style="font-size: 100%;">arrow_back</span>Back</router-link>
<p>{{ event.description }}</p>
<router-link to="/tickets/order">Order tickets</router-link>
</div>
</div>
</template>
<style scoped>
.details {
flex-grow: 1;
height: 100%;
}
.top-container {
background: linear-gradient( to top, rgba( 0, 0, 0, 0.9 ) 50%, rgba( 0, 0, 0, 0 ) ), url( '@/assets/logo.png');
background-repeat: no-repeat;
background-size: cover;
height: 100%;
}
</style>