Skip to content
Snippets Groups Projects
Commit 3be9a41f authored by Pierre-Yves Bele Calo's avatar Pierre-Yves Bele Calo
Browse files

[US FOX-231] Fix double scrollbar

Approved-by: Massine CHIKHI
Approved-by: Zakaria TIRDAD
parent 5cb7cc0b
No related branches found
No related tags found
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<app-owner-preview *ngIf="openedItem && previewType==='TENANT'" (previewClose)="closePanel()" [owner]="owner" [tenant]="openedItem"></app-owner-preview> <app-owner-preview *ngIf="openedItem && previewType==='TENANT'" (previewClose)="closePanel()" [owner]="owner" [tenant]="openedItem"></app-owner-preview>
</mat-sidenav> </mat-sidenav>
<mat-sidenav-content> <mat-sidenav-content class="overflow-none">
<img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/> <img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/>
<div class="vitamui-header"> <div class="vitamui-header">
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<app-group-preview *ngIf="openedItem" (previewClose)="closePanel()" [group]="openedItem"></app-group-preview> <app-group-preview *ngIf="openedItem" (previewClose)="closePanel()" [group]="openedItem"></app-group-preview>
</mat-sidenav> </mat-sidenav>
<mat-sidenav-content> <mat-sidenav-content class="overflow-none">
<img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/> <img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<app-hierarchy-detail *ngIf="openedItem" (previewClose)="closePanel()" [id]="openedItem?.id"></app-hierarchy-detail> <app-hierarchy-detail *ngIf="openedItem" (previewClose)="closePanel()" [id]="openedItem?.id"></app-hierarchy-detail>
</mat-sidenav> </mat-sidenav>
<mat-sidenav-content> <mat-sidenav-content class="overflow-none">
<img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/> <img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<app-profile-detail *ngIf="openedItem" (profileClose)="closePanel()" [id]="openedItem?.id"></app-profile-detail> <app-profile-detail *ngIf="openedItem" (profileClose)="closePanel()" [id]="openedItem?.id"></app-profile-detail>
</mat-sidenav> </mat-sidenav>
<mat-sidenav-content> <mat-sidenav-content class="overflow-none">
<img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/> <img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<app-user-preview *ngIf="openedItem" (previewClose)="closePanel()" [user]="openedItem" [customer]="customer"></app-user-preview> <app-user-preview *ngIf="openedItem" (previewClose)="closePanel()" [user]="openedItem" [customer]="customer"></app-user-preview>
</mat-sidenav> </mat-sidenav>
<mat-sidenav-content> <mat-sidenav-content class="overflow-none">
<img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/> <img src="assets/bg-fingerprint.svg" class="bg-fingerprint"/>
......
...@@ -107,3 +107,7 @@ ...@@ -107,3 +107,7 @@
left: 0; left: 0;
top: 163px; top: 163px;
} }
.overflow-none.mat-drawer-content {
overflow: visible;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment