Save user flights

This commit is contained in:
2026-04-05 21:38:36 +10:00
parent fcbf021af7
commit 8da717a400
10 changed files with 273 additions and 51 deletions
@@ -0,0 +1,33 @@
<!-- AppLink.vue -->
<script setup lang="ts">
import { Link } from "@inertiajs/vue3";
defineProps<{
href: string;
}>();
</script>
<template>
<Link :href="href" class="app-link">
<slot />
</Link>
</template>
<style scoped>
.app-link {
color: var(--accent);
text-decoration: none;
transition: color 0.15s ease, text-decoration-color 0.15s ease;
text-underline-offset: 3px;
}
.app-link:visited {
color: var(--accent);
}
.app-link:hover {
color: var(--accent-soft);
text-decoration: underline;
text-decoration-color: rgba(56, 189, 248, 0.4);
}
</style>