diff --git a/apps/maarch_entreprise/Views/priorities-administration.component.html b/apps/maarch_entreprise/Views/priorities-administration.component.html
index e515a5953144bc92801d520786101ec4beb21a6e..d10300c97e5860d6a46825b47ed0a6bf32261f74 100755
--- a/apps/maarch_entreprise/Views/priorities-administration.component.html
+++ b/apps/maarch_entreprise/Views/priorities-administration.component.html
@@ -77,14 +77,14 @@
                         </mat-cell>
                     </ng-container>
                     <ng-container matColumnDef="default_priority">
-                        <mat-header-cell *matHeaderCellDef mat-sort-header [class.hide-for-mobile]="mobileQuery.matches">{{lang.defaultPriority}}</mat-header-cell>
+                        <mat-header-cell *matHeaderCellDef mat-sort-header [class.hide-for-mobile]="mobileQuery.matches" >{{lang.defaultPriority}}</mat-header-cell>
                         <mat-cell *matCellDef="let element" [class.hide-for-mobile]="mobileQuery.matches">
                             <span *ngIf="element.default_priority" color="primary" class="fa fa-check fa-2x"></span>
                         </mat-cell>
                     </ng-container>
                     <ng-container matColumnDef="actions">
                         <mat-header-cell *matHeaderCellDef></mat-header-cell>
-                        <mat-cell *matCellDef="let element" style="text-align: right;">
+                        <mat-cell *matCellDef="let element" style="text-align:right;">
                             <button mat-icon-button color="warn" matTooltip="{{lang.delete}}" (click)="$event.stopPropagation();deletePriority(element.id)">
                                 <mat-icon class="fa fa-trash fa-2x" aria-hidden="true"></mat-icon>
                             </button>
diff --git a/apps/maarch_entreprise/css/engine.css b/apps/maarch_entreprise/css/engine.css
index 36035cf4f125d4913d007ae02fb8c12b534833e4..7f4b5052496808e7ff05e28aa990caf5e990bda2 100755
--- a/apps/maarch_entreprise/css/engine.css
+++ b/apps/maarch_entreprise/css/engine.css
@@ -309,4 +309,14 @@ h1.admin-app-name {
 
 .headerMaarch.mat-menu-panel {
     background: #135f7f !important;
+}
+
+.mat-column-default_priority {
+    display:flex;
+    justify-content:center;
+}
+
+.mat-column-working_days {
+    display:flex;
+    justify-content:right;
 }
\ No newline at end of file