diff --git a/src/frontend/app/sendedResource/sended-resource-list.component.html b/src/frontend/app/sendedResource/sended-resource-list.component.html
index e8ea2806c61aabe3a62b3de8414ffcbc742c2661..9c611008dd44ee90a6e259047df1867426a28794 100644
--- a/src/frontend/app/sendedResource/sended-resource-list.component.html
+++ b/src/frontend/app/sendedResource/sended-resource-list.component.html
@@ -4,7 +4,7 @@
     </div>
 </ng-container>
 <ng-template #elseLoading>
-    <div class="row">
+    <div class="row" style="margin: 0px;">
         <div class="col-md-12" style="padding-bottom: 10px;">
             <mat-button-toggle-group *ngIf="sendedResources.length > 0" class="filterTypes" (change)="filterType($event)">
                 <mat-button-toggle [checked]="currentFilter === ''" [value]="''">Tous</mat-button-toggle>
@@ -34,10 +34,10 @@
                         Pris en charge : <b>{{row.creationDate | timeAgo : 'full'}}</b>
                     </span>
                 </div>
-                <div style="display: grid;grid-template-columns: 100px 1fr 170px;width: 100%;grid-gap: 10px;align-items: center;">
+                <div style="display: grid;grid-template-columns: 100px 1fr 170px;width: 100%;grid-gap: 10px;align-items: center;padding:10px;">
                     <div class="dateType">
                         <span class="type">
-                            <span class="badge" [style.background]="row.typeColor">{{lang[row.type]}}</span>
+                            <span class="badge" [style.background]="row.typeColor" [title]="lang[row.type]">{{lang[row.type]}}</span>
                             <div class="attach">
                                 <i *ngIf="row.hasMainDoc" class="fas fa-file" title="Document attaché"></i>
                                 <i *ngIf="row.hasAttach" class="fas fa-paperclip" title="Pièce(s) jointe(s) attachée(s)"></i>
@@ -51,10 +51,10 @@
                         
                     </div>
                     <div class="contact">
-                        <span *ngIf="row.sender" style="white-space: pre;overflow: hidden;text-overflow: ellipsis;">
+                        <span *ngIf="row.sender" style="white-space: pre;overflow: hidden;text-overflow: ellipsis;" [title]="row.sender">
                             De : {{row.sender}}
                         </span>
-                        <span style="white-space: pre;overflow: hidden;text-overflow: ellipsis;">
+                        <span style="white-space: pre;overflow: hidden;text-overflow: ellipsis;" [title]="row.recipients">
                             Pour : {{row.recipients}}
                         </span>
                     </div>
diff --git a/src/frontend/app/sendedResource/sended-resource-list.component.scss b/src/frontend/app/sendedResource/sended-resource-list.component.scss
index 282d79f38cfa8aa0b1d387ebe1b02f8fcb6bcf46..cf492bb3946b860b5a635461a48c18f889d7af31 100644
--- a/src/frontend/app/sendedResource/sended-resource-list.component.scss
+++ b/src/frontend/app/sendedResource/sended-resource-list.component.scss
@@ -11,10 +11,13 @@
 
     .type {
         .badge {
+            overflow: hidden;
+            text-overflow: ellipsis;
             font-size: 10px !important;
             color: white;
             font-weight: normal;
             width: 100px;
+            border-radius: .25em;
         }
 
     }