After completing the TUTORIAL: TOUR OF HEROES on this link, I attempted to integrate angular2-material into my project. Unfortunately, I am having issues with the CSS not displaying correctly. Can anyone provide insight into what I may be missing or doing wrong?
You can view my systemjs configuration here.
In an attempt to resolve the CSS issue, I made the following changes in app.component.ts:
import {MD_LIST_DIRECTIVES} from '@angular2-material/list/list';
@Component({
selector: 'my-app',
template:
....
directives: [HeroDetailComponent, MD_LIST_DIRECTIVES],