From 045a8daa82f244bc08687f9ab7e70fc057992a07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marl=C3=A8ne=20Simondant?= <msimondant@grandlyon.com> Date: Mon, 9 Dec 2024 17:08:13 +0100 Subject: [PATCH] wip : font 14px --- .../structure-edition-summary.component.html | 49 ++++++++++--------- .../structure-edition-summary.component.scss | 7 +++ 2 files changed, 33 insertions(+), 23 deletions(-) diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html index 094ddbb6b..9e5275a4d 100644 --- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.html +++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.html @@ -344,30 +344,33 @@ </div> <ng-container *ngIf="offerHolder.structure"> - <div class="sectionHeader"> - <strong>Autres démarches : </strong> - <app-button - class="hide-on-mobile" - [variant]="'secondary'" - [label]="structure.otherDescription ? 'Modifier' : 'Ajouter'" - [iconName]="structure.otherDescription ? 'edit' : 'plus'" - [size]="'small'" - (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompanimentOther, offerHolder)" - /> - <app-icon-button - class="hide-on-desktop" - [variant]="'secondary'" - [iconName]="structure.otherDescription ? 'edit' : 'plus'" - [ariaLabel]=" - structure.otherDescription - ? 'Modifier les autres démarches en ligne' - : 'Ajouter les autres démarches en ligne' - " - (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompanimentOther, offerHolder)" - /> + <div class="otherHelp"> + <div class="sectionHeader"> + <strong>Autres démarches : </strong> + <app-button + class="hide-on-mobile" + [variant]="'secondary'" + [label]="structure.otherDescription ? 'Modifier' : 'Ajouter'" + [iconName]="structure.otherDescription ? 'edit' : 'plus'" + [size]="'small'" + (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompanimentOther, offerHolder)" + /> + <app-icon-button + class="hide-on-desktop" + [variant]="'secondary'" + [iconName]="structure.otherDescription ? 'edit' : 'plus'" + [ariaLabel]=" + structure.otherDescription + ? 'Modifier les autres démarches en ligne' + : 'Ajouter les autres démarches en ligne' + " + (action)="goToEdit(structureFormStep.structureDigitalHelpingAccompanimentOther, offerHolder)" + /> + </div> + + <app-no-information *ngIf="!structure.otherDescription" /> + <p *ngIf="structure.otherDescription">{{ structure.otherDescription }}</p> </div> - <app-no-information *ngIf="!structure.otherDescription" /> - <p *ngIf="structure.otherDescription">{{ structure.otherDescription }}</p> </ng-container> </section> diff --git a/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss b/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss index 14055696a..1bdb889d3 100644 --- a/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss +++ b/src/app/profile/structure-edition-summary/structure-edition-summary.component.scss @@ -77,10 +77,17 @@ } } + .otherHelp { + gap: 12px; + @include font-regular-14; + } + .formationDetails { display: flex; flex-direction: column; gap: 24px; + padding-left: 12px; + @include font-regular-14; > div { display: flex; -- GitLab