ajout du style global et de la carte leaflet

This commit is contained in:
2026-03-18 13:21:19 +01:00
parent 43d0cf4abe
commit c97bda935e
7 changed files with 196 additions and 34 deletions
+1 -3
View File
@@ -1,6 +1,5 @@
<detail-view>
<div if={ props.formation }
style="border:1px solid #ccc; padding:10px; margin:10px;">
<div if={ props.formation } class="detail-card">
<h2>{ props.formation.nom }</h2>
<p><b>Établissement :</b> { props.formation.etablissement }</p>
<p><b>Ville :</b> { props.formation.ville }</p>
@@ -11,7 +10,6 @@
<p><b>Candidats :</b> { props.formation.candidats }</p>
<p><b>Admis :</b> { props.formation.admis }</p>
<p><b>Taux d'accès :</b> { props.formation.tauxAcces }%</p>
<button onclick={ () => props.onback() }>Retour</button>
</div>
</detail-view>