Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

fix(compatibility): remove reference to md- in styles #113

Merged
merged 1 commit into from
Feb 27, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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