Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

style: 💄 add SCAE images in expert contact form #548

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added frontend/src/assets/arme_cote_droit.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/assets/arme_cote_gauche.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/assets/arme_vue_rapprochee.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/assets/chargeur.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
67 changes: 52 additions & 15 deletions frontend/src/views/GuideAskingExpertise/ExpertiseForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@
<DsfrModal
title="Consignes pour les prises de photos"
icon="ri-arrow-right-line"
size="lg"
:opened="showModalPhotos"
@close="onClose()"
>
Expand All @@ -176,30 +177,57 @@
<p>
Pour faciliter l'analyse de votre demande, veuillez tenir
compte de la liste des photos à prendre en veillant à la
qualité de celles-ci (<span class="font-bold"
>netteté, exposition, orientation, sans perspective)
:</span
qualité de celles-ci
<span class="font-bold"
>(netteté, exposition, orientation, sans
perspective).</span
>
<br />
</p>
</div>
<br />
<li>
</div>
<div class="fr-col-12 container-img">
<div class="fr-col-6 fr-p-1w">
<span class="font-bold"
>Vue d'ensemble de l'arme côté gauche</span
><li>Vue d'ensemble de l'arme côté gauche</li></span
>
</li>
<li>
<img
src="@/assets/arme_cote_gauche.png"
width="90%"
alt="Vue d'ensemble de l'arme côté gauche"
/>
</div>
<div class="fr-col-6 fr-p-1w">
<span class="font-bold"
>Vue d'ensemble de l'arme côté droite</span
><li>Vue d'ensemble de l'arme côté droit</li></span
>
</li>
<li>
<img
src="@/assets/arme_cote_droit.png"
width="90%"
alt="Vue d'ensemble de l'arme côté droit"
/>
</div>
</div>
<div class="fr-col-12 container-img">
<div class="fr-col-6 fr-p-1w">
<span class="font-bold"
>Vue(s) rapprochée(s) des marquages et poinçon(s)</span
><li>
Vue(s) rapprochée(s) des marquages et poinçon(s)
</li></span
>
</li>
<li><span class="font-bold">Une photo du chargeur</span></li>
<img
src="@/assets/arme_vue_rapprochee.png"
width="90%"
alt="Vue(s) rapprochée(s) des marquages et poinçon(s)"
/>
</div>
<div class="fr-col-6 fr-p-1w">
<span class="font-bold"><li>Une photo du chargeur</li></span>
<img
src="@/assets/chargeur.jpeg"
width="90%"
alt="Une photo du chargeur"
/>
</div>
</div>
<div class="fr-mt-3w">
<DsfrButton
Expand Down Expand Up @@ -593,4 +621,13 @@ const handleSubmit = async () => {
padding: 10px;
border-radius: 5px;
}

.container-img {
display: flex;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
text-align: center;
}
</style>
Loading