add style and interactions on ProjectRequestDialog

This commit is contained in:
Timothée Goguely 2025-01-27 16:28:12 +01:00
parent 3913c8b93e
commit 30b00ed643
3 changed files with 103 additions and 40 deletions

View file

@ -1,7 +1,7 @@
<template>
<main class="flex flex-col" style="--row-gap: var(--space-32)">
<Projects />
<ProjectRequestDialog v-if="isProjectRequestDialogOpen" />
<ProjectRequestDialog v-if="isProjectRequestDialogOpen" @close="isProjectRequestDialogOpen = false" />
<ProjectRequestButton @click="isProjectRequestDialogOpen = true" />
</main>
</template>