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: Mise en forme du paragraphe de l'import parcellaire #478

Merged
merged 1 commit into from
Dec 18, 2024
Merged
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
17 changes: 14 additions & 3 deletions src/components/setup/Flow/Preview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,7 @@
Vous pouvez récupérer les informations renseignées dans une version de votre choix : dates et niveaux de
conversion, parcelles ajoutées manuellement, variété (si la culture est identique), notes de certification
et noms de parcelles modifiés.
<br />
<br />
<span class="carriage-return"></span>
Pour plus d’information :
<a
class="fr-link"
Expand All @@ -114,7 +113,8 @@
@click.stop.prevent="showDetails = !showDetails"
>
Quelles informations sont reprises ?<span
:class="showDetails ? 'fr-icon-arrow-down-s-line' : 'fr-icon-arrow-up-s-line'"
class="icon-info"
:class="showDetails ? 'fr-icon-arrow-up-s-line' : 'fr-icon-arrow-down-s-line'"
/>
</button>
</div>
Expand Down Expand Up @@ -292,5 +292,16 @@ const getShortVersionName = (name) => {
.more-infos-text {
margin-bottom: 1em;
}

.icon-info::before {
font-size: 1em;
width: 1.2rem;
margin-left: 0.5em;
}

.carriage-return {
height: 1rem;
display: block;
}
}
</style>
Loading