They missed their flight...

This commit is contained in:
Laurent
2025-03-17 10:51:32 +01:00
parent f8457af0db
commit 6074dc6fd1
2 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
<script setup lang="ts">
const props = defineProps<{
description: string;
}>();
</script>
<template>
<div class="button">{{ description }}</div>
</template>
<style scoped>
.button {
color: var(--primary-color);
text-align: center;
align-content: center;
border-radius: var(--radius);
background-color: var(--secondary-color);
word-break: break-word;
min-height: 7vh;
}
.button:hover
{
transform: scale(1.1);
background-color: var(--header-color);
filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
</style>

View File

@@ -0,0 +1,13 @@
<script setup lang="ts">
</script>
<template>
<div class="input-field">
<input/>
</div>
</template>
<style scoped>
</style>