diff --git a/src/app/structure-list/components/structure-details/structure-details.component.html b/src/app/structure-list/components/structure-details/structure-details.component.html index 8d375d069c14dfc5a9b10194fc7fbe7c78ad4d59..164d02b42c49a24bed55613c60cd77437b45474a 100644 --- a/src/app/structure-list/components/structure-details/structure-details.component.html +++ b/src/app/structure-list/components/structure-details/structure-details.component.html @@ -92,53 +92,11 @@ </div> </div> </div> - </div> - </div> - <!-- Démarches en ligne --> - <div - *ngIf="structure.proceduresAccompaniment.length" - fxLayout="column" - class="structure-details-block" - fxLayoutAlign="baseline baseline" - fxLayoutGap="20px" - > - <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px"> - <app-svg-icon [type]="'ico'" [icon]="'demarches'" [iconClass]="'icon-32'"></app-svg-icon> - <h2>Démarches en ligne</h2> - </div> - <div fxLayout="column"> - <div fxLayout="row wrap" fxLayoutGap="24px"> - <div *ngFor="let accompagnement of structure.proceduresAccompaniment"> - <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card> - </div> + <div> + {{ structure.description }} </div> - <p *ngIf="isOtherSection"> - Tout ce qui est en lien avec la création d'entreprise ex : consultation de sites de références (BPI, Je créé - dans ma région, ...), inscription à des newsletters, aide pour trouver des sites (CMA, CCI, Urssaf,...), - recherches d'infos sur moteur de recherche... - </p> - </div> - </div> - <!-- Services --> - <div - *ngIf="isBaseSkills() || isAccessRights()" - fxLayout="column" - class="structure-details-block" - fxLayoutAlign="baseline baseline" - fxLayoutGap="20px" - > - <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px"> - <app-svg-icon [type]="'ico'" [icon]="'services'" [iconClass]="'icon-32'"></app-svg-icon> - <h2>Ateliers</h2> - </div> - <div fxLayout="row" class="w-100" fxLayout.lt-sm="column"> - <div fxFlex="50%" *ngIf="isBaseSkills()"> - <h3 class="subtitle">Compétences de base</h3> - <p *ngFor="let skill of baseSkills">{{ skill.text }}</p> - </div> - <div fxFlex="50%" *ngIf="isAccessRights()"> - <h3 class="subtitle">Accès aux droits</h3> - <p *ngFor="let rights of accessRights">{{ rights.text }}</p> + <div class="info"> + {{ structure.lockdownActivity }} </div> </div> </div> @@ -189,6 +147,55 @@ </div> </div> </div> + <!-- Démarches en ligne --> + <div + *ngIf="structure.proceduresAccompaniment.length" + fxLayout="column" + class="structure-details-block" + fxLayoutAlign="baseline baseline" + fxLayoutGap="20px" + > + <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px"> + <app-svg-icon [type]="'ico'" [icon]="'demarches'" [iconClass]="'icon-32'"></app-svg-icon> + <h2>Démarches en ligne</h2> + </div> + <div fxLayout="column"> + <div fxLayout="row wrap" fxLayoutGap="24px"> + <div *ngFor="let accompagnement of structure.proceduresAccompaniment"> + <app-logo-card *ngIf="accompagnement != 'autres'" [name]="accompagnement"></app-logo-card> + </div> + </div> + <p *ngIf="isOtherSection"> + Tout ce qui est en lien avec la création d'entreprise ex : consultation de sites de références (BPI, Je créé + dans ma région, ...), inscription à des newsletters, aide pour trouver des sites (CMA, CCI, Urssaf,...), + recherches d'infos sur moteur de recherche... + </p> + </div> + </div> + <!-- Services --> + <div + *ngIf="isBaseSkills() || isAccessRights()" + fxLayout="column" + class="structure-details-block" + fxLayoutAlign="baseline baseline" + fxLayoutGap="20px" + > + <div fxLayout="row" fxLayoutAlign="none flex-end" fxLayoutGap="8px"> + <app-svg-icon [type]="'ico'" [icon]="'services'" [iconClass]="'icon-32'"></app-svg-icon> + <h2>Ateliers</h2> + </div> + <div fxLayout="row" class="w-100" fxLayout.lt-sm="column"> + <div fxFlex="50%" *ngIf="isBaseSkills()"> + <h3 class="subtitle">Compétences de base</h3> + <p *ngFor="let skill of baseSkills">{{ skill.text }}</p> + </div> + <div fxFlex="50%" *ngIf="isAccessRights()"> + <h3 class="subtitle">Accès aux droits</h3> + <p *ngFor="let rights of accessRights">{{ rights.text }}</p> + </div> + </div> + </div> + <!-- Equipements --> <div *ngIf="structure.hasEquipments()" diff --git a/src/app/structure-list/components/structure-details/structure-details.component.scss b/src/app/structure-list/components/structure-details/structure-details.component.scss index d0cb40f0ba6da221ccd7642c236ada9d1c1650d2..e7fe7c1311d2bc3fe3268b0c9a334837d76726b5 100644 --- a/src/app/structure-list/components/structure-details/structure-details.component.scss +++ b/src/app/structure-list/components/structure-details/structure-details.component.scss @@ -99,3 +99,7 @@ a { display: none !important; } } + +.info { + color: $ram-hover-principal; +} diff --git a/src/assets/scss/_color.scss b/src/assets/scss/_color.scss index 2e5b3fbe2838fc61c7800875b4d226b44632f925..ad8ba7e920341154095335aa68e22ac098f9e0f2 100644 --- a/src/assets/scss/_color.scss +++ b/src/assets/scss/_color.scss @@ -16,6 +16,7 @@ $blue: #348899; $blue-hover: #117083; $blue-active: #8cb6be; $red-metro: #d50000; +$red-info: #a00000; /* APP COLORS */ $primary-color: $red-metro; $secondary-color: $blue; @@ -23,3 +24,5 @@ $default-link-color: $grey-2; $button-secondary: $blue; $app-background: $grey-6; $modal-background: rgba($grey-1, 0.75); +$app-background: $grey-6; +$ram-hover-principal: $red-info;