Skip to content

Commit

Permalink
fix(compatibility): remove reference to md- in styles (angular#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewseguin authored and kara committed Feb 27, 2017
1 parent a88a31d commit d5cf426
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/_app-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@
$foreground: map-get($theme, foreground);

.docs-app-background {
background: md-color($background, background);
background: mat-color($background, background);
}

.docs-primary-header {
background: md-color($primary);
background: mat-color($primary);

h1 {
color: md-color($primary, default-contrast);
color: mat-color($primary, default-contrast);
}
}

.docs-footer {
background: md-color($primary);
color: md-color($primary, default-contrast);
background: mat-color($primary);
color: mat-color($primary, default-contrast);
}

@include docs-site-typography-theme($theme);
Expand Down
2 changes: 1 addition & 1 deletion src/styles/_typography.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
font-size: 16px;
}

.md-tab-body-wrapper h2 {
.mat-tab-body-wrapper h2 {
margin-top: 0px;
}

Expand Down

0 comments on commit d5cf426

Please sign in to comment.