13 lines
350 B
SCSS
13 lines
350 B
SCSS
|
@import '~@angular/material/theming';
|
||
|
@include mat-core();
|
||
|
$my-app-primary: mat-palette($mat-blue, 900);
|
||
|
$my-app-accent: mat-palette($mat-blue, 700);
|
||
|
|
||
|
$my-app-theme: mat-light-theme($my-app-primary, $my-app-accent);
|
||
|
|
||
|
@include angular-material-theme($my-app-theme);
|
||
|
|
||
|
.cdk-global-overlay-wrapper, .cdk-overlay-container {
|
||
|
z-index: 9999!important;
|
||
|
}
|