Update theme-light.scss

This commit is contained in:
Piotr Pekala 2019-11-26 06:02:06 -08:00
parent aefcc16b3a
commit 49b669819d

View File

@ -11,7 +11,7 @@ $accent: mat-palette($mat-blue, A200, A100, A700);
$theme: mat-light-theme($primary, $accent); $theme: mat-light-theme($primary, $accent);
$light-palette: mat-palette($mat-light-blue, 900, A100, A400); $light-palette: mat-palette($mat-blue, 900, A100, A400);
$light-background: mat-light-theme($light-palette, $primary); $light-background: mat-light-theme($light-palette, $primary);
$mat-light-theme-background: ( $mat-light-theme-background: (
@ -38,6 +38,13 @@ $theme: map-merge(
) )
); );
@mixin mat-button-theme($theme) {
.mat-button, .mat-icon-button, .mat-stroked-button {
color: white;
background: transparent;
}
}
@include mat-core-theme($theme); @include mat-core-theme($theme);
@include mat-autocomplete-theme($theme); @include mat-autocomplete-theme($theme);
@include mat-button-theme($theme); @include mat-button-theme($theme);