From 6f56beec1a2e046e2ad29117021d392b693201b6 Mon Sep 17 00:00:00 2001
From: Hugo SUBTIL <ext.sopra.husubtil@grandlyon.com>
Date: Wed, 12 Jan 2022 14:30:53 +0100
Subject: [PATCH] fix(profile): update remove user from structure style

---
 .../structure-options-modal.component.html                   | 2 +-
 .../structure-options-modal.component.scss                   | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/src/app/shared/components/structure-options-modal/structure-options-modal.component.html b/src/app/shared/components/structure-options-modal/structure-options-modal.component.html
index a9aab9a78..dd0db6ea1 100644
--- a/src/app/shared/components/structure-options-modal/structure-options-modal.component.html
+++ b/src/app/shared/components/structure-options-modal/structure-options-modal.component.html
@@ -167,7 +167,7 @@
       </div>
       <div fxLayout="column" fxLayoutGap="16px" class="ownersBlock">
         <div class="row removeOwner" *ngFor="let owner of structure.owners" fxLayoutGap="16px">
-          <button class="btn-primary small" (click)="removeOwner(owner.id)">X</button>
+          <button class="btn-primary" (click)="removeOwner(owner.id)">Supprimer</button>
           <span>
             {{ owner.email }}
           </span>
diff --git a/src/app/shared/components/structure-options-modal/structure-options-modal.component.scss b/src/app/shared/components/structure-options-modal/structure-options-modal.component.scss
index 94ed697a3..781140e04 100644
--- a/src/app/shared/components/structure-options-modal/structure-options-modal.component.scss
+++ b/src/app/shared/components/structure-options-modal/structure-options-modal.component.scss
@@ -63,12 +63,13 @@ button {
     white-space: nowrap;
     width: 84%;
     text-overflow: ellipsis;
+    @include cn-regular-16;
     button {
-      width: 40px;
+      width: 130px;
       background-color: $red-default;
     }
     span {
-      @include cn-bold-18;
+      @include cn-regular-18;
     }
   }
   button {
-- 
GitLab