-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
42 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,45 @@ | ||
<template> | ||
<div class="fr-container fr-py-6w"> | ||
<img src="/bg_fin-des-missions.webp" height="200" alt="" /> | ||
<h1 class="fr-mt-2w">Bravo, vous avez terminé la mission "{{ titreMission }}" !</h1> | ||
<router-link to="" class="fr-btn">Retourner à la liste des missions</router-link> | ||
<div class="bg-fin-mission fr-p-4w text--center border-radius--md"> | ||
<div class="conteneur-drapeaux fr-mb-2w"> | ||
<span class="fr-icon-flag-fill text--bleu" aria-hidden="true" /> | ||
<span class="fr-icon-flag-fill text--bleu big" aria-hidden="true" /> | ||
<span class="fr-icon-flag-fill text--bleu" aria-hidden="true" /> | ||
</div> | ||
<h1 class="fr-mt-2w"> | ||
<span class="text--uppercase">Bravo !</span><br /> | ||
<span class="text--bleu fr-text--lead text--normal"> | ||
Vous avez terminé la mission<br /> | ||
"<span class="fr-text--bold">{{ titre }}</span | ||
>" ! | ||
</span> | ||
</h1> | ||
<router-link to="" class="fr-btn">Retourner à la liste des missions</router-link> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
defineProps<{ titreMission: string }>(); | ||
defineProps<{ titre: string }>(); | ||
</script> | ||
|
||
<style scoped> | ||
.bg-fin-mission { | ||
background-image: url('/bg_fin-des-missions.webp'); | ||
} | ||
.conteneur-drapeaux { | ||
width: 100%; | ||
display: flex; | ||
align-items: flex-end; | ||
justify-content: center; | ||
} | ||
.fr-icon-flag-fill::before { | ||
--icon-size: 1.5rem; | ||
} | ||
.big::before { | ||
--icon-size: 3.5rem; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters