Pulse7
9/21/2017 - 11:12 AM

Importing node_modules css

@import '~bootstrap/dist/css/bootstrap.css'; // Drop this in root styles.css file

or

@Component({
  encapsulation: ViewEncapsulation.None,
  styleUrls: [
    './app.component.css',
    '../../node_modules/bootstrap/dist/css/bootstrap.css'
  ],
  ....
  
or 
in .angular-cli.json
"styles": [
        "../node_modules/bootstrap/dist/css/bootstrap.min.css",
        "styles.css"
      ],