Added Notifications

This commit is contained in:
2026-05-26 23:02:37 +10:00
parent 57b015eb18
commit 05c16147ee
19 changed files with 455 additions and 363 deletions
@@ -0,0 +1,22 @@
<script setup lang="ts">
import {Flight} from "@/Types/types";
defineProps<{
flight: Flight
}>()
</script>
<template>
<div class="livery" v-if="flight.livery_url" :style="{ backgroundImage: `url('${flight.livery_url}')` }">
</div>
</template>
<style scoped>
.livery{
width: 100%;
aspect-ratio: 16/9;
background-size: cover;
min-width: 300px;
}
</style>