Skip to content
Snippets Groups Projects
Commit d1612790 authored by Hugo SUBTIL's avatar Hugo SUBTIL
Browse files

fix(structure-form): update internet add/remove items text

parent f959d459
No related branches found
No related tags found
Loading
......@@ -628,7 +628,10 @@
<div class="collapse" [ngClass]="{ notCollapsed: !showWebsite }">
<div fxLayout="column">
<div class="collapseHeader" fxLayout="row" fxLayoutAlign=" center" (click)="toggleWebSite()">
<div class="titleCollapse">J’ajoute un site web</div>
<div class="titleCollapse">
<p [ngClass]="{ show: showWebsite, hide: !showWebsite }" class="no-margin">J'ajoute un site web</p>
<p [ngClass]="{ show: !showWebsite, hide: showWebsite }" class="no-margin">Je retire un site web</p>
</div>
<div class="logo">
<svg class="show" aria-hidden="true">
<use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
......@@ -671,7 +674,14 @@
<div class="collapse" [ngClass]="{ notCollapsed: !showSocialNetwork }">
<div fxLayout="column">
<div class="collapseHeader" fxLayout="row" fxLayoutAlign=" center" (click)="toggleSocialNetwork()">
<div class="titleCollapse">J’ajoute les réseaux sociaux</div>
<div class="titleCollapse">
<p [ngClass]="{ show: showSocialNetwork, hide: !showSocialNetwork }" class="no-margin">
J’ajoute les réseaux sociaux
</p>
<p [ngClass]="{ show: !showSocialNetwork, hide: showSocialNetwork }" class="no-margin">
Je retire des réseaux sociaux
</p>
</div>
<div class="logo">
<svg class="show" aria-hidden="true">
<use [attr.xlink:href]="'assets/form/sprite.svg#show'"></use>
......
......@@ -439,6 +439,10 @@ img {
width: 100%;
@include cn-bold-16;
color: $grey-2;
p {
color: $grey-2;
@include cn-bold-16;
}
}
.collapseHeader {
height: 65px;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment