Skip to content

Commit

Permalink
fix(styles): prevent blue labels in menus
Browse files Browse the repository at this point in the history
- wrap default theme in specific css class
- seems NOT to reintroduce no theme warning reported earlier

fixes #93
  • Loading branch information
tomastrajan committed Apr 10, 2018
1 parent 84321c0 commit 45327b4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@
@include anms-examples-component-theme($theme);
}

@include angular-material-theme($anms-theme);
@include custom-components-theme($anms-theme);
.default-theme {
@include angular-material-theme($anms-theme);
@include custom-components-theme($anms-theme);
}

.light-theme {
@include angular-material-theme($anms-light-theme);
Expand Down

0 comments on commit 45327b4

Please sign in to comment.