20 lines
529 B
SCSS
20 lines
529 B
SCSS
@import '../../../../node_modules/@angular/material/theming';
|
|
@include mat-core();
|
|
$primary-color: (
|
|
0: #211F7E,
|
|
contrast: (50: #ffffff)
|
|
);
|
|
$secondary-color: (
|
|
0: #3086ED,
|
|
contrast: (50: #ffffff)
|
|
);
|
|
$my-app-primary: mat-palette($primary-color, 0);
|
|
$my-app-accent: mat-palette($secondary-color, 0);
|
|
$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;
|
|
}
|