Resize pop-up windows and remove pagination arrow buttons

This commit is contained in:
Rajnikant Lodhi 2022-08-18 12:09:01 +05:30
parent 85f60fbc1c
commit b3aeb148e7
2 changed files with 8 additions and 1 deletions

View File

@ -25,7 +25,7 @@ export class ConfigActionComponent {
@Input() node: Node;
private conf = {
autoFocus: false,
width: '800px',
width: '950px',
disableClose: true,
};
dialogRef;

View File

@ -77,3 +77,10 @@ mat-menu-panel {
overflow-y: clip !important;
}
.mat-tab-label {
padding: 0 10px !important;
min-width: 152px !important;
}
.mat-tab-header-pagination-controls-enabled .mat-tab-header-pagination {
display: none !important;
}